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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
assemomar
Frequent Visitor

Add if statement to VAR

 

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,,

 

VolumeJAN =
var Color = AssetMaintenanceRequests[Month]
var CarModel = CALCULATE(MAX('VOLUME-JAN'[volume]),AssetMaintenanceRequests[Month]= Color)
return CarModel
 
 
 
 

 

 

2 ACCEPTED SOLUTIONS
_AAndrade
Super User
Super User

Hi @assemomar,

Please try if this solve your problem:

VolumeJAN =
var Color = SELECTEDVALUE(AssetMaintenanceRequests[Month])
var CarModel = CALCULATE(MAX('VOLUME-JAN'[volume]),AssetMaintenanceRequests[Month]= Color)
return 
IF(Color = "JAN,"
CarModel )




Did I answer your question? Mark my post as a solution! Kudos are welcome.

Proud to be a Super User!




View solution in original post

v-yilong-msft
Community Support
Community Support

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.

View solution in original post

2 REPLIES 2
v-yilong-msft
Community Support
Community Support

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.

_AAndrade
Super User
Super User

Hi @assemomar,

Please try if this solve your problem:

VolumeJAN =
var Color = SELECTEDVALUE(AssetMaintenanceRequests[Month])
var CarModel = CALCULATE(MAX('VOLUME-JAN'[volume]),AssetMaintenanceRequests[Month]= Color)
return 
IF(Color = "JAN,"
CarModel )




Did I answer your question? Mark my post as a solution! Kudos are welcome.

Proud to be a Super User!




Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.