Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
sayali_deshmukh
Helper III
Helper III

Dynamic values in bar graph based on selection - Daily & Cumulative

I have table with separate columns for Daily and Cumulative values Need help for creating a bar graph to show Daily or Cumulative values according to selection
1 ACCEPTED SOLUTION
nandukrishnavs
Community Champion
Community Champion

@sayali_deshmukh 

 

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
🙂

 

 


Regards,
Nandu Krishna

View solution in original post

3 REPLIES 3
v-xuding-msft
Community Support
Community Support

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. 

 

 

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Greg_Deckler
Community Champion
Community Champion

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...



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
nandukrishnavs
Community Champion
Community Champion

@sayali_deshmukh 

 

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
🙂

 

 


Regards,
Nandu Krishna

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.