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 create a calculated column based on the example below.
Basically, the rows that have a 'blank' version are the total income from each product. What I'm trying to achieve is the calculation on "Income % versions", displaying the percentage of income from each product version.
In this example I've calculated the value manually on Excel, just to show what I'm searching for.
I've tried a few formulas, but I don't know how to create this. Is this achievable?
Any help is more than welcome.
Thanks
Solved! Go to Solution.
Hi @tsoares05 ,
Please try to create a new column with below dax formula:
Income % versions =
VAR cur_pt = [Product]
VAR _a =
CALCULATE (
MAX ( [Income] ),
FILTER ( 'Table' , [Product] = cur_pt && [Version] = BLANK () )
)
VAR _b = [Income]
VAR cur_ver = [Version]
VAR _val =
FORMAT ( DIVIDE ( _b, _a ), "Percent" )
RETURN
IF ( cur_ver = BLANK (), BLANK (), _val )
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
This should be solved with a measure - not with a calculated column. If my approach suits you, then share data in a fomat that can be pasted in an MS Excel file.
Hi @tsoares05 ,
Please try to create a new column with below dax formula:
Income % versions =
VAR cur_pt = [Product]
VAR _a =
CALCULATE (
MAX ( [Income] ),
FILTER ( 'Table' , [Product] = cur_pt && [Version] = BLANK () )
)
VAR _b = [Income]
VAR cur_ver = [Version]
VAR _val =
FORMAT ( DIVIDE ( _b, _a ), "Percent" )
RETURN
IF ( cur_ver = BLANK (), BLANK (), _val )
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks @Anonymous ! Solved my goal.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 63 | |
| 55 | |
| 42 | |
| 41 | |
| 23 |
| User | Count |
|---|---|
| 171 | |
| 136 | |
| 119 | |
| 80 | |
| 54 |