Join 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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have a calculated column where I have values in percentage.
What I want is one more column
Which shows value of last column if it is less than 300% and if it is more than 300 percent then it must show 300%+
Solved! Go to Solution.
Dear friend,
I wanted to do with fields with different values and limit.
I used measure and it's done .
Thanks for prompt response.
I came to know one more trick .
We can also use emoji in DAX coding / column coding , power bi will paste it.(use """") arround them .
Isnt it cool .
I used🚩 this flag in following code
Measure = var a = Sumx('Table'[Overload%])
var b = Related('Variant'[serial_Weight])
Return if(a<b,b&"🚩",a)
hi @Sujit_Thakur - You can create a calculated column as shown below - the final column will be in TEXT format
Proud to be a Super User!
Dear friend,
I wanted to do with fields with different values and limit.
I used measure and it's done .
Thanks for prompt response.
I came to know one more trick .
We can also use emoji in DAX coding / column coding , power bi will paste it.(use """") arround them .
Isnt it cool .
I used🚩 this flag in following code
Measure = var a = Sumx('Table'[Overload%])
var b = Related('Variant'[serial_Weight])
Return if(a<b,b&"🚩",a)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 38 | |
| 36 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 128 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |