Question
How to create a dynamic tooltip to display different values for different measures?
For example, when using Measure Names to display several values, how do you alter the Tooltips data based on the Measure you selected?
How to create a dynamic tooltip to display different values for different measures?
For example, when using Measure Names to display several values, how do you alter the Tooltips data based on the Measure you selected?
IF [_Measure Names]="Sales" THEN { SUM([Sales])} ELSEIF [_Measure Names]="Profit" THEN { SUM([Profit])} ELSEIF [_Measure Names]="Quantity" THEN { SUM([Quantity])} END