The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
Solved! Go to Solution.
Hi @jmmariscal ,
You can create a calculated column as below to get it:
Column = 'Table'[Number] - 1000 * LEFT ( DIVIDE ( 'Table'[Number], 1000, 0 ), 2 )
Best Regards
User | Count |
---|---|
16 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
8 | |
8 |