Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Sum({<[Category] = {$(Graph1-Group-Value)}>}Budget)
I want to find the sum of Budget, when Category matches a value specified in a variable, where category is another field in the dataset with Budget.
Here '$(Graph1-Group-Value)' is defined as below
if($(Graph1-Group1) = 'CML & Synd. Loans - Avg','CML & Synd. Loans - Avg','No Value')
With the above script, the value is not captured
May be try this:
Sum({<[Category] = {'$(=$(Graph1-Group-Value))'}>}Budget)
or
Sum({<[Category] = {'$(=Graph1-Group-Value)'}>}Budget)
May be try this:
Sum({<[Category] = {'$(=$(Graph1-Group-Value))'}>}Budget)
or
Sum({<[Category] = {'$(=Graph1-Group-Value)'}>}Budget)
Or you can check it directly like this:
Sum({<[Category] = {"$(=If($(Graph1-Group1) = 'CML & Synd. Loans - Avg', 'CML & Synd. Loans - Avg', 'No Value'))"}>}Budget)