Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
juriengroot
Contributor III
Contributor III

Variable in load editor with Set analysis expression

Hi,

I am trying to load variables in the load editor. The variables include set analysis expressions.

Example:

Let vKPI_Budget = SUM({$<MonthNum ={'>=$(=vFMonth)<=$(=vTMonth)'}, Year={"$(=vYear)"}>}[Budget] );

How can I load this in the Data Load editor? It gives issues with the {, '' and "".

I prefer not doing it via an external excel with all variables, I know that works.

1 Solution

Accepted Solutions
sunny_talwar

Try this:

LET vKPI_Budget = 'Sum({$' & '<MonthNum = {'>=$' & '(=vFMonth)<=$' & '(=vTMonth)'}, Year={"$' & '(=vYear)"}>}[Budget])';

View solution in original post

8 Replies
sunny_talwar

Try this:

LET vKPI_Budget = 'Sum({$' & '<MonthNum = {'>=$' & '(=vFMonth)<=$' & '(=vTMonth)'}, Year={"$' & '(=vYear)"}>}[Budget])';

sunny_talwar

This might even work without the first break, but I am not 100% sure

LET vKPI_Budget = 'Sum({$<MonthNum = {'>=$' & '(=vFMonth)<=$' & '(=vTMonth)'}, Year={"$' & '(=vYear)"}>}[Budget])';

juriengroot
Contributor III
Contributor III
Author

After I replaced the single quotes by the double quotes and used your technique to break it apart... it worked.

Thanks Sunny T

TKendrick20
Partner - Specialist
Partner - Specialist

Can you post what your final solution was?

juriengroot
Contributor III
Contributor III
Author

Hi Tim,

It's:

Let vKPI_Budget = 'SUM({$' & '<MonthNum ={">=$' & '(=vFMonth)<=$' & '(=vTMonth)"}, Year={"$' & '(=vYear)"}>}[Budget] )';

mikegrattan
Creator III
Creator III

I'm trying to do something similar but I just can't get it to work. Here's my variable statement in my load script:

let vExp = '=Sum({<Period={$(vPriorPer)},Year={$(vYr)}>} ExtendedPrice)';

This gets evaluated as a formula, but doesn't evaluate to an actual value. My goal is get the value of the expression into the variable so I can load it to another table inline.

Thanks.

sunny_talwar

Try this:

SET vExp = '=Sum({<Period={#(vPriorPer)},Year={#(vYr)}>} ExtendedPrice)';

LET vExp2 = Replace($(vExp), '#', '$');

mikegrattan
Creator III
Creator III

Thanks for the suggestion, but I don't think it's working. I get an error "unexpected token Sum, expected nothing.", on the vExp2 variable and then it evaluates to Null.