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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors