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 am trying to concatenate 3 text columns into one column, separated by a semi colon, in query editor which sounds simple, but I am only getting null values?
I am trying to concatenate the three soft credit fields in the picture below. THanks in advance for your help!
Solved! Go to Solution.
hello @danielrsnyder, I had the same results.
Try Text.Combine. Edit - of course that is assuming you do not have number in store credit.
= Table.AddColumn(#"Added Custom", "Text.Combine", each Text.Combine({[SoftCredit],[Soft Credit_1],[Soft Credit_2]},"; "))
Proud to be a Super User!
hello @danielrsnyder, I had the same results.
Try Text.Combine. Edit - of course that is assuming you do not have number in store credit.
= Table.AddColumn(#"Added Custom", "Text.Combine", each Text.Combine({[SoftCredit],[Soft Credit_1],[Soft Credit_2]},"; "))
Proud to be a Super User!
Hmm, that's strange as that looks like the right syntax.
I just did a nested if outside of the query editor and that works, but would have been a lot easier in the editor it seems.
Soft Credit = IF(not ISBLANK('Gifts Last Week'[Soft Credit_2]),'Gifts Last Week'[SoftCredit] & "; " & 'Gifts Last Week'[Soft Credit_1] & "; " & 'Gifts Last Week'[Soft Credit_2],if(AND('Gifts Last Week'[Soft Credit_2]=BLANK(),not ISBLANK('Gifts Last Week'[Soft Credit_1])),'Gifts Last Week'[SoftCredit] & "; " & 'Gifts Last Week'[Soft Credit_1],'Gifts Last Week'[SoftCredit]))
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 |
---|---|
56 | |
55 | |
54 | |
37 | |
29 |
User | Count |
---|---|
77 | |
62 | |
45 | |
40 | |
40 |