March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I need assistance in creating a measure for a 1- 5 score card based on values calculated below:
Ave Defects Identified in HE = AVERAGE('Internal Audit Line Inspection'[% of defects detected at HE])
Score card =
IF (
[Ave Defects Identified in HE] >=90, 5,
IF ([Ave Defects Identified in HE] >=80 && IF ([Ave Defects Identified in HE] <=89, 4,
IF ([Ave Defects Identified in HE] >=70 && IF ([Ave Defects Identified in HE] <=79, 3,
IF ([Ave Defects Identified in HE] >=60 && IF ([Ave Defects Identified in HE] <=69, 2,
IF ([Ave Defects Identified in HE] <=60, 1,
)
I'm getting an error as below:
Too many arguments were passed to the IF function. The maximum argument count for the function is 3.
any suggestions as clearly I'm not doing something right.
Solved! Go to Solution.
HI @Anonymous ,
try below:
Score card = IF ( [Ave Defects Identified in HE] >=90, 5, IF ([Ave Defects Identified in HE] >=80 , 4, IF ([Ave Defects Identified in HE] >=70, 3, IF ([Ave Defects Identified in HE] >=60 ,2, 1 ))))
Regards,
Washivale
HI @Anonymous ,
try below:
Score card = IF ( [Ave Defects Identified in HE] >=90, 5, IF ([Ave Defects Identified in HE] >=80 , 4, IF ([Ave Defects Identified in HE] >=70, 3, IF ([Ave Defects Identified in HE] >=60 ,2, 1 ))))
Regards,
Washivale
thanks alot. you guys make this seem so simple.
glad that helped!!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |