Forum Discussion
bhmiller89
5 years agoHelper V
Help with simple measure
I have data that shows Card Reads. I need to calculate the following and be able to use "State" as the legend % = ([Unique card reads] / [Unique card reads in Jan. 2020]) * 100% Basically div...
Fowmy
5 years agoSuper User
bhmiller89
Try :
Hope you have a DATES table connect to the fact table:
% =
DIVIDE(
[Unique card reads],
CALCULATE(
[Unique card reads],
Date[Year] = 2020,
Date[Month] = 1,
)
)