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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
fav_ccc2021
Helper I
Helper I

Invertir numero con DAX

Hola a todos

 

me pueden ayudar a invertir un numero con dax?

Ejemplo:

 

15254956  ---->  65945251

 

Desde ya muchas gracias por la ayuda!!!

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

lbendlin_0-1706651387945.png

Column2 = 
var a = Format([Column1],"#")
var b = SELECTCOLUMNS(GENERATESERIES(1,len(a)),"Index",[Value])
var c = GENERATE(b,{mid(a,[Index],1)})
return CONCATENATEX(c,[Value],"",[Index],DESC)

NOTE: This will fail (sort of)  if the last digit of the number is 0.

 

View solution in original post

2 REPLIES 2
lbendlin
Super User
Super User

lbendlin_0-1706651387945.png

Column2 = 
var a = Format([Column1],"#")
var b = SELECTCOLUMNS(GENERATESERIES(1,len(a)),"Index",[Value])
var c = GENERATE(b,{mid(a,[Index],1)})
return CONCATENATEX(c,[Value],"",[Index],DESC)

NOTE: This will fail (sort of)  if the last digit of the number is 0.

 

for the record here is a more concise version

 

= CONCATENATEX(ADDCOLUMNS(GENERATESERIES(1, LEN([Number])), "Rev", MID([Number],[Value],1)), [Rev], "",[Value],DESC)

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.