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
Anonymous
Not applicable

Power query

I have 2 columns:

The first column indicates my source and is a concatenation of the file name plus the as of date

The second column is the record number.

Here is an example:

 

1.  extract_093020.xls

2.  22937

 

My goal is to produce a third column that has the following:  Date_record number. 

Here is an example:

093020_22937

 

I tried this expression (below), but get  the following error:

Expression.Error: We cannot convert the value "2020-09-30" to type List.
Details:
    Value=2020-09-30
    Type=[Type]

 

Text.Combine( "20"&Text.Middle([Source.Name],19,2)&"-"&Text.Middle([Source.Name],15,2)&"-"&Text.Middle([Source.Name],17,2))+[Record ID]

 

Please hlep me know what I am doing wrong.


Thanks,

 

1 ACCEPTED SOLUTION
CNENFRNL
Community Champion
Community Champion

Salut, @Anonymous , you may try

Text.Combine({Text.Select([Source.Name], {"0".."9"}),[Record ID]}, "_")

Screenshot 2020-11-01 032342.png

 


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

1 REPLY 1
CNENFRNL
Community Champion
Community Champion

Salut, @Anonymous , you may try

Text.Combine({Text.Select([Source.Name], {"0".."9"}),[Record ID]}, "_")

Screenshot 2020-11-01 032342.png

 


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

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