Hello,
When I create a gallery in my app, I'm using the following code for the Items property.
SortByColumns(GroupBy('[dbo].[vw_BSC_Targets]',"KPI_Name","KPI_Description", "Others"),"KPI_Name")
This is because there are multiple lines for the KPI_Name and Descriptions.
However when I select one of the items in the gallery and click on my "add new record" button which loads a new form for recording new measures each month, I'd like to be able to reference the "DateTo" and "Period_Target" columns which is wrapped up in the "Others" group in the above code.
If I moved that column out of "Others" it would result in 12 rows per KPI name, which i do not want.
But in the new form I have a label which takes the "Period_Target", I'd like this label to change based on the date that the user selects in the calendar drop down.
So if the user select end of month for July, the Period_Target label will look up the target value for July and show this, if the user changes the date selector to August the lookup happens again to get the correct/new value for the label.
Is this possible at all?
Hope it has all made sense,
Thanks.