Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi
I'm trying to filter rows so that get one value.
The Bonus ($) is calculated by multiplying GL ($) by 0.005
I would like to show the table so that it shows this way
| Ref# | Quarter | Month | Sales ($) | GL ($) | Bonus ($) |
| 30243770-440 | 2021-Q4 | 2021-M11 | 9,53034.86 | 96,1190.86 | 4,805.9543 |
| 30243770-440 | 2021-Q4 | 2021-M12 | 8,156.00 | - | - |
Or maybe someone can suggest another way to display same info
Solved! Go to Solution.
Hi @Anonymous ,
Here are the steps you can follow:
1. Create calculated table.
Summarize =
SUMMARIZE('Table','Table'[Ref#],'Table'[Quarter],'Table'[Month],'Table'[Sales($)],
"GL($)",IF(RIGHT('Table'[Month],2)="12",BLANK(),MAX('Table'[GL($)])),
"Bounds($)",IF(RIGHT('Table'[Month],2)="12",BLANK(),MAX('Table'[Bouns($)])))
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Anonymous ,
Here are the steps you can follow:
1. Create calculated table.
Summarize =
SUMMARIZE('Table','Table'[Ref#],'Table'[Quarter],'Table'[Month],'Table'[Sales($)],
"GL($)",IF(RIGHT('Table'[Month],2)="12",BLANK(),MAX('Table'[GL($)])),
"Bounds($)",IF(RIGHT('Table'[Month],2)="12",BLANK(),MAX('Table'[Bouns($)])))
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 38 | |
| 36 | |
| 30 | |
| 28 |
| User | Count |
|---|---|
| 128 | |
| 88 | |
| 79 | |
| 67 | |
| 62 |