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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
assemomar
Regular 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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.