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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

Button chart or possible solution

Hi guys, my name is Mario and this is my first post 🙂

 

Recetly i stared to work again whit PowerBI. I attack the data from a cube (Analysis Services) and i want to change showed data into a chart.

 

In this moment i have two charts: one for  'Real income' vs 'Budget' and other for  'Real income amount' vs 'Budget amount'

 

I want to put both of these chart in the same one. To try to do it i have created this two measures:

gr_BUDGET = IF([Measure_CLICK]=TRUE;[Budget amount];[Budget]) 

gr_REAL = IF([Measure_CLICK]=TRUE;[Real income amount];[Real income])

 

Measure_CLICK = TRUE -----> so it shows AMOUNT's;

 

Do you know if it could be able to do it it a checkbox or button? Other solution?

 

Thanks a lot!

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

Hi @Anonymous,

 

I'd like to suggest you to use slicer to instead, below is sample steps:

1. Create a table as the source of slicer.

SelectTable= UNION(ROW("Name","Combo A"),ROW("Name","Combo B")

 

2. Write a measure to get the selected item from slicer.

 

Selected= IF(HASONEVALUE(SelectTable[Name]),VALUES(SelectTable[Name]),BLANK())

 

 

3. Write a measure based on selected item.

BUDGET=IF([Selected]="Combo A",[Budget amount],[Budget])

REAL=IF([Selected]="Combo A",[Real income amount],[Real income])

 

Regards,

Xiaoxin Sheng

View solution in original post

Anonymous
Not applicable

Hi @Anonymous and thanks for your solution.

 

Finally i added a new table to the cube NOT LINKED (it was a Analysis Services, i cannot create a new table into Power BI Desktop)

 

tableName: DimChecker

 

 

| FIELD   |  VALUE  |
| ------  | ------- |
| Monthly |     1   | 
| Amount  |     0   | 

 

 

Using that table i did one mesasure more

 

M_checker = IF(VALUES(DimChecker[Value])=1;TRUE();FALSE())  

 

it's working perfect! 🙂 🙂

 

Thank you so much.

 

Regards!

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous,

 

I'd like to suggest you to use slicer to instead, below is sample steps:

1. Create a table as the source of slicer.

SelectTable= UNION(ROW("Name","Combo A"),ROW("Name","Combo B")

 

2. Write a measure to get the selected item from slicer.

 

Selected= IF(HASONEVALUE(SelectTable[Name]),VALUES(SelectTable[Name]),BLANK())

 

 

3. Write a measure based on selected item.

BUDGET=IF([Selected]="Combo A",[Budget amount],[Budget])

REAL=IF([Selected]="Combo A",[Real income amount],[Real income])

 

Regards,

Xiaoxin Sheng

Anonymous
Not applicable

Hi @Anonymous and thanks for your solution.

 

Finally i added a new table to the cube NOT LINKED (it was a Analysis Services, i cannot create a new table into Power BI Desktop)

 

tableName: DimChecker

 

 

| FIELD   |  VALUE  |
| ------  | ------- |
| Monthly |     1   | 
| Amount  |     0   | 

 

 

Using that table i did one mesasure more

 

M_checker = IF(VALUES(DimChecker[Value])=1;TRUE();FALSE())  

 

it's working perfect! 🙂 🙂

 

Thank you so much.

 

Regards!

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors