Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I've created a variable, vMyValue, which contain all the values that i need to compare in my analysis.
My analysis would be something like this:
Sum({<BUD_UNBUD={$(vBudgetConfig)}>}TotalBudget)
My question is I want to compare if the BUD_UNBUD = 'Budgeted' and null, then it will proceed to sum. How should I include the "Null" value in my variable?
Thanks.
Eugene
Hi,
The best way for this is you give a value to null values.
Something like this.
Load Field1, If(Isnull(Field2,'NULL',Field2)) as Field2 from xyz.
Then you can just use the NULL in search to get the null data.
Regards,
Kaushik Solanki
try:
Sum({<BUD_UNBUD={$(vBudgetConfig) , '' }>}TotalBudget)
Hi,
The best way for this is you give a value to null values.
Something like this.
Load Field1, If(Isnull(Field2,'NULL',Field2)) as Field2 from xyz.
Then you can just use the NULL in search to get the null data.
Regards,
Kaushik Solanki
try this
Sum({<BUD_UNBUD={$(vBudgetConfig),'',' ','-'}>}TotalBudget)
why i never think of this? hee. thank you.