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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Kindly, if you could help me add an if statement in below VAR,
If the statement is like this: if (AssetMaintenanceRequests[Month]) = "JAN," then VAR (as below)
Regard,,
Solved! Go to Solution.
Hi @assemomar,
Please try if this solve your problem:
Proud to be a Super User!
Hi @assemomar ,
Your solution is great, @_AAndrade . It worked like a charm! Here I have another idea in mind, and I would like to share it for reference.
I think we can use the IF function to check if the Color variable (which holds the month from AssetMaintenanceRequests[Month]) equals "JAN". If it does, we proceed with your original calculation to determine CarModel. If not, the function returns BLANK(), meaning no value will be returned for months other than January.
Here is the DAX I will provide.
VolumeJAN =
VAR Color = AssetMaintenanceRequests[Month]
RETURN
IF (
Color = "JAN",
VAR CarModel =
CALCULATE (
MAX ( 'VOLUME-JAN'[volume] ),
AssetMaintenanceRequests[Month] = Color
)
RETURN
CarModel,
BLANK ()
)
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @assemomar ,
Your solution is great, @_AAndrade . It worked like a charm! Here I have another idea in mind, and I would like to share it for reference.
I think we can use the IF function to check if the Color variable (which holds the month from AssetMaintenanceRequests[Month]) equals "JAN". If it does, we proceed with your original calculation to determine CarModel. If not, the function returns BLANK(), meaning no value will be returned for months other than January.
Here is the DAX I will provide.
VolumeJAN =
VAR Color = AssetMaintenanceRequests[Month]
RETURN
IF (
Color = "JAN",
VAR CarModel =
CALCULATE (
MAX ( 'VOLUME-JAN'[volume] ),
AssetMaintenanceRequests[Month] = Color
)
RETURN
CarModel,
BLANK ()
)
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @assemomar,
Please try if this solve your problem:
Proud to be a Super User!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!