Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Hi Team,
Need your help here
I have a table (name: EmpDetails) with two columns as "EmpID" and "Marks"
| EmpID | Marks |
| 100 | 35 |
| 200 | 45 |
| 300 | 55 |
| 400 | 78 |
| 500 | 25 |
| 600 | 92 |
Now, I have created a mesuare which returns a value (say the value is 50)
I wanted to create a new column in the table as "Flag" which should compare the Marks available at each EmpID and flag it as "Below avg" or "Above Avg"
| EmpID | Marks | Flag |
| 100 | 35 | Below Avg |
| 200 | 45 | Below Avg |
| 300 | 55 | Above Avg |
| 400 | 78 | Above Avg |
| 500 | 25 | Below Avg |
| 600 | 92 | Above Avg |
can you please help me on this.
Regards,
Kamal M.
Solved! Go to Solution.
Hi @Kamalakar ,
If your measure1=50 is already defined then you can use:
Flag = IF(SUM('Table'[Marks])>[Measure1],
"Above avg","Below avg")
Hope it helps.
Thanks, mahenkj2
this helps.
Hi @Kamalakar ,
If your measure1=50 is already defined then you can use:
Flag = IF(SUM('Table'[Marks])>[Measure1],
"Above avg","Below avg")
Hope it helps.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 75 | |
| 36 | |
| 31 | |
| 29 | |
| 26 |