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
rajeshchawla
Helper I
Helper I

Using TransformColumns with newGuid for each row

Hi folks,

 

I'm working to replace row values in a column if it's null to a new GUID. What I have places the same GUID for each row. 

 

#"FixMyCoolColumn" = Table.TransformColumns (#"Removed Blank Rows", {{"CoolColumn", each if _ = null then Text.NewGuid() else _ } } )

 

Any thoughts on how to make each row have a unique GUID ?

 

Regards,

Rajesh

 

1 ACCEPTED SOLUTION
PC2790
Community Champion
Community Champion

It is a know issue with Text.NewGuid().

Try a workaround like:

= Table.TransformColumns(#"Removed Blank Rows",{"CoolColumn", each if _=null then try error Text.NewGuid() otherwise Text.NewGuid()  else _})

View solution in original post

3 REPLIES 3
PC2790
Community Champion
Community Champion

It is a know issue with Text.NewGuid().

Try a workaround like:

= Table.TransformColumns(#"Removed Blank Rows",{"CoolColumn", each if _=null then try error Text.NewGuid() otherwise Text.NewGuid()  else _})

Thanks! The workaround did the trick for me.

 

Regards,

Rajesh

Anonymous
Not applicable

 

 

Table.TransformColumns(lastTab,{{"Column2", each let tng=Text.NewGuid() in if _=null then tng else _}})

 

 

I had never come across this interesting feature before. The problem seems to be circumvented even so or by filling in a whole new column of NewGuid and then taking the ones you need from here

 

or, perhaps the best way:

 

Table.TransformColumns(lastTab,{{"Column3", each _??Text.NewGuid() }})

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