Forum Discussion
Multiple measures in a chart
Hello,
Is there a possibility to create such chart? The tricky point is that I have a slicer and 2 groups - "Active" and "No active". So I have 4 measures - [count of active curr year], [count of no active LY], [count of no active curr year], [count of no active LY] and I use
SWITCH(TRUE(),
Anonymous , You have to create another measure for LY
Measure =
SWITCH(TRUE(),
VALUES('Chart'[Chart type]) = "Active", [count of active LY]
VALUES('Chart'[Chart type]) = "No active", [count of no active LY]
)and use these two switch measure in visual
1 Reply
- amitchandakSuper User
Anonymous , You have to create another measure for LY
Measure =
SWITCH(TRUE(),
VALUES('Chart'[Chart type]) = "Active", [count of active LY]
VALUES('Chart'[Chart type]) = "No active", [count of no active LY]
)and use these two switch measure in visual