Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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,
Solved! Go to Solution.
Salut, @Anonymous , you may try
Text.Combine({Text.Select([Source.Name], {"0".."9"}),[Record ID]}, "_")
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! |
Salut, @Anonymous , you may try
Text.Combine({Text.Select([Source.Name], {"0".."9"}),[Record ID]}, "_")
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! |
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
15 | |
12 | |
8 | |
8 | |
7 |
User | Count |
---|---|
15 | |
13 | |
8 | |
7 | |
6 |