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
jmmariscal
Frequent Visitor

Decomposing a number

Hi,

 

I would like to decompose a number to get part of it using DAX. These are some examples of what I want to get:

 

Number: 42.330-->I want to get 330 (this is 42330-42000)

Number: 54320--> I want to get 320 (this is 54320-54000)

 

 

Any idea?

 

Thanks in advance

1 ACCEPTED SOLUTION
PaulOlding
Solution Sage
Solution Sage

Hi @jmmariscal 

You could use the MOD function.

MOD(Number, 1000)

View solution in original post

2 REPLIES 2
v-yiruan-msft
Community Support
Community Support

Hi @jmmariscal ,

You can create a calculated column as below to get it:

Column = 'Table'[Number] - 1000 * LEFT ( DIVIDE ( 'Table'[Number], 1000, 0 ), 2 )

yingyinr_0-1646987240087.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
PaulOlding
Solution Sage
Solution Sage

Hi @jmmariscal 

You could use the MOD function.

MOD(Number, 1000)

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.