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 Experts,
Below is the DAX for Calculated Column, I would like to convert the same as DAX Measure. Can anyone Help me Please!!!
Thank you
Solved! Go to Solution.
I'd probably rewrite it something like this:
AUMBAND =
VAR CurrentPortfolio =
VALUES ( 'Financial Overview'[Portfolio] )
VAR CurrentFinPort =
FILTER (
'Financial Overview',
'Financial Overview'[Portfolio] IN CurrentPortfolio
)
RETURN
IF (
SELECTEDVALUE ( 'Financial Overview'[FinOverFinLevel1] ) = "Assets Under Management",
SUMX ( CurrentFinPort, 'Financial Overview'[Balance] )
)
@Anonymous If you post it as text, sure.
Hi Greg,
AUMBAND =
VAR CurrentPortfolio = 'Financial Overview'[Portfolio]
VAR CurrentFinPort =
FILTER('Financial Overview','Financial Overview'[Portfolio] = CurrentPortfolio)
Return
IF('Financial Overview'[FinOverFinLevel1] = "Assets Under Management",
SUMX(CurrentFinPort,'Financial Overview'[Balance]))
I'd probably rewrite it something like this:
AUMBAND =
VAR CurrentPortfolio =
VALUES ( 'Financial Overview'[Portfolio] )
VAR CurrentFinPort =
FILTER (
'Financial Overview',
'Financial Overview'[Portfolio] IN CurrentPortfolio
)
RETURN
IF (
SELECTEDVALUE ( 'Financial Overview'[FinOverFinLevel1] ) = "Assets Under Management",
SUMX ( CurrentFinPort, 'Financial Overview'[Balance] )
)
@Anonymous Wrap your column references in an aggregation like MAX or SUM, etc.
Hi Greg,
Thank you for your quick reply. Could I trouble to convert it as a measure, Please!!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 159 | |
| 132 | |
| 118 | |
| 79 | |
| 53 |