This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowThe Fabric community is upgrading! Read all of the details including the timeline and what you can expect. Learn more
Hi,
Please see the attached image,if giving wrong value.Can some one will tell the reason.
A = IF(AND('Training Feedback'[Average Trainer Rating]>=1.0,'Training Feedback'[Average Trainer Rating]<2),"Need Drastic Improvement",IF(AND('Training Feedback'[Average Trainer Rating]>=2.0,'Training Feedback'[Average Trainer Rating]<3),"Need Improvement",IF(AND('Training Feedback'[Average Trainer Rating]>=3.0,'Training Feedback'[Average Trainer Rating]<4),"Good",IF(AND('Training Feedback'[Average Trainer Rating]>=4.0,'Training Feedback'[Average Trainer Rating]<5),"Very Good",IF('Training Feedback'[Average Trainer Rating]=5.0,"Excellent","Need Drastic Improvement")))))
You are duplicating the average trainer rating in the AND clause
AND (
'Training Feedback'[Average Trainer Rating] >= 1.0,
'Training Feedback'[Average Trainer Rating] < 2
),
should be
AND (
'Training Feedback'[Average Trainer Rating] >= 1.0,
'Training Feedback'[Total Rating] < 2
),
that must be rounding issue. All scores below 5.0 will be 'Very Good', even 4.9999
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
| User | Count |
|---|---|
| 24 | |
| 22 | |
| 20 | |
| 18 | |
| 14 |
| User | Count |
|---|---|
| 45 | |
| 38 | |
| 24 | |
| 22 | |
| 20 |