Hello,
I have a "Measure" slicer that allows you to select either Nominal, YoY Growth %, or 5yr CAGR %. I then have a DAX measure that calculates based on what is selected in the "Measure" slicer:
Measure Type = IF([isReportSlicerSet],SWITCH(VALUES('Measure'[Measure]),"Nominal",[Total Revenue],"YoY Growth %",[YoY Revenue],"5yr CAGR %",[Revenue 5yr CAGR]))
What I need is for the out put for the formatting to be a decimal formatting for the "Nominal",[Total Revenue] selection and I need the output measure to be in percentage formatting for the YoY or 5yr CAGR selections.
Any ideas??
Thanks!
I have a "Measure" slicer that allows you to select either Nominal, YoY Growth %, or 5yr CAGR %. I then have a DAX measure that calculates based on what is selected in the "Measure" slicer:
Measure Type = IF([isReportSlicerSet],SWITCH(VALUES('Measure'[Measure]),"Nominal",[Total Revenue],"YoY Growth %",[YoY Revenue],"5yr CAGR %",[Revenue 5yr CAGR]))
What I need is for the out put for the formatting to be a decimal formatting for the "Nominal",[Total Revenue] selection and I need the output measure to be in percentage formatting for the YoY or 5yr CAGR selections.
Any ideas??
Thanks!