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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Sujit_Thakur
Solution Sage
Solution Sage

Table

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%+

1 ACCEPTED 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)

View solution in original post

2 REPLIES 2
Sumanth_23
Memorable Member
Memorable Member

hi @Sujit_Thakur - You can create a calculated column as shown below - the final column will be in TEXT format

%age Check = IF ( [Hours] < 3, "" & [Hours] , "300+")
 
Column Check.png
 
Please mark the post as a solution and provide a 👍 if my comment helped with solving your issue. Thanks!
Did I answer your question? Mark my post as a solution! Appreciate your Kudos!

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)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.