Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Solved! Go to Solution.
Define one table with a selection values
example
SelectionTable
Item |
Daily |
Cumulative |
Then switch your column/measure based on the slicer selection.
Try something similar to below.
Measure =
VAR _item =
SELECTEDVALUE ( SelectionTable[Item] )
VAR result =
SWITCH (
TRUE (),
_item = "Daily", SUM ( 'Table'[DailyValue] ),
_item = "Cumulative", SUM ( 'Table'[CumulativeValue] )
)
RETURN
result
Did I answer your question? Mark my post as a solution!
Appreciate with a kudos 🙂
Hi @sayali_deshmukh ,
Could you tell me if your problem has been solved? If it is, kindly mark the helpful answer as solution. You could share your own solutions as well. More people who encounter the same issue will benefit from here. If you are still confused about it, please some sample data and the expected result to us.
Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
This might help: https://community.powerbi.com/t5/Quick-Measures-Gallery/Dynamic-EVERYTHING-measures-axis-legend-titl...
Define one table with a selection values
example
SelectionTable
Item |
Daily |
Cumulative |
Then switch your column/measure based on the slicer selection.
Try something similar to below.
Measure =
VAR _item =
SELECTEDVALUE ( SelectionTable[Item] )
VAR result =
SWITCH (
TRUE (),
_item = "Daily", SUM ( 'Table'[DailyValue] ),
_item = "Cumulative", SUM ( 'Table'[CumulativeValue] )
)
RETURN
result
Did I answer your question? Mark my post as a solution!
Appreciate with a kudos 🙂
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
68 | |
53 | |
53 | |
36 | |
34 |
User | Count |
---|---|
84 | |
71 | |
55 | |
45 | |
43 |