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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
being_mohit16
Frequent Visitor

Need Help with performing measure within "Measure"

I'm trying to calculate some criteria in a column using "if" condition(looping), but it's only checking the first "if" condition and giving the single value (IF([% of Assets added during the Quarter] >= 5, 5,). 
When I'm using the same formula in the measure column then it is working correctly.
After creating criteria I have to find out an average of it also.
--------------------------------------------------------------------------------------------------------------------
DAX Formulas  for Criteria: Avila Score Crit = IF(ISBLANK([% of Assets added during the Quarter]), BLANK(),
IF([% of Assets added during the Quarter] >= 5, 5,
IF(AND([% of Assets added during the Quarter] < 3.5, [% of Assets added during the Quarter] > 5),3,
IF([% of Assets added during the Quarter] <=3.5,1)))) 
----------------------------------------------------------------------------------------------------------------------
Avila Score is "Measure" and after this is "Column".

WhatsApp Image 2019-05-09 at 8.46.01 PM.jpeg

3 REPLIES 3
DAXRichArd
Resolver I
Resolver I

Hi being_mohit16,

 

I'm still a practicianer in DAX. I'm having trouble following your inquiry (your question).

If you have two conditions that need to be met, instead of using IF, you can try SWITCH with AND. SWITCH for me is easier, but I have occasions when I still use IF.

 

Column Name =

     SWITCH (

     TRUE () ,

     AND (

          logic test 1 = "what your looking for",

          logic test 2 = "what your looking for"

          )

          = TRUE(), result if  true,

           result if falseI

)

 

I tested the formula above on a data set I'm using and it worked. It looked like this:

 

Test =
SWITCH(
TRUE(),
AND('FT Airlines'[Airline] = "Air France Cargo",'FT Airlines'[Direction] = "Departure") = TRUE(), "MATCH",
"NO MATCH")
 
Be sure to use the quotation marks for your logic test. If the result you want for a match or no match is a column, write the Table[Column]. Else enclose your desired result in quotation marks.
 
Hope this helps. Have a great day!
DAXRichArd

@DAXRichArd
Thanks for suggestions, but i tried it is calculating measure for all the column thats Why results is not coming, so i used value () function to get identical column.

Hello,

One more thought. DAX does not accept a table as a measure. If your DAX code results in what would end up being a talbe, if you write it as a measure you'll get an error. Nevertheless, you can use a table in a measure as a filter function that then aggregates the filter context.

Good luck.

RM

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.