Forum Discussion
Anonymous
2 years agoNot applicable
Error using Expression.Evaluate & #shared for dynamic query refrence
I have a number of different finiancial queries for each quarter and I want to be able to choose which to pull from dynamically. I attempted to accomplish this like so: Source = Expression.Eval...
- 2 years ago
this call works just fine
Expression.Evaluate("#""LY-All Branch Summery-Q1""", #shared)
Anonymous
2 years agoNot applicable
Why, it does indeed!
I was able to use that to make my dynamic names work:
= Expression.Evaluate("#""LY-All Branch Summery-Q" & Quarter & """", #shared)
Thanks AlienSx!