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
CloudMonkey
Post Prodigy
Post Prodigy

Reduce numbers to a limit

Hi,

 

Please can you tell me how to elegantly limit a number to a specified maximum number (i.e. without using an if function?) I'm trying to convert a count function to a 0/1 flag function. For example the following converisons should take place:

0 -> 0

1 -> 1

6 -> 1

2-> 1

9-> 1

 

Thanks,

 

CM

3 REPLIES 3
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @CloudMonkey ,

Have you solved your problem?

If you have solved, please  always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.

If you still need help, please feel free to ask.

Best Regards,

Cherry

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @CloudMonkey,

Normally, for your requirement, we will use if function to achieve that.

You also could create the conditional custom column in query editor.

Capture.PNG

Best Regards,

Cherry

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
jdbuchanan71
Super User
Super User

Hello @CloudMonkey 

If your first number is called 'value' then something like this would do it.

IF ( value = 0, 0, 1 )

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.

Top Solution Authors