Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to unlink certain visualizations and KPI's from my app/dashboard. The link signal deosnt display when I edit sheet. I only want certain items to be linked. So when I click on a month or salesorder I dont want the whole dashboard to filter.
fabs(sum({1 <currentyear={1}>}shipped_quantity)-sum({1 <currentyear={1}>}Qty))
That worked, thank you!
Hi,
You can add {1} in your expressions :
Sum({1} MyMeasure)
thank you but that didn't seem to do it. Examples below.
fabs(sum({1}{<currentyear={1}>}shipped_quantity)-sum({1}{<currentyear={1}>}Qty))
fabs(sum({1}{<currentmonth={1}>}shipped_quantity)-sum({1}{<currentmonth={1}>}Qty))
fabs(sum({1 <currentyear={1}>}shipped_quantity)-sum({1 <currentyear={1}>}Qty))
That worked, thank you!