Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
i have a table in PQ. 2 columns, 'Month" and "Year". there are only 2 entries i want to retreive them and make a string
my PQ table
Month, Year
August, 2023
output as a string= August_2023
how can i accomplish
Hi @ilcaa722
You can add a custom column
Text.Combine({[Month],Text.From([Year])},"_")
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi ilcaa722,
You have to create custom column in power query using your month and year column.
Just simply create custom column named month_year and add the following DAX in power query :
month_year = [Month] & "_" & [Year]
Regards,
Prachi
If this post helps to solve the issue, then please consider Accept it as the solution to help the other members find it more quickly.
Use the Add Custom Column wizard.
? not sure I follow. how would adding a column generate a string value using the 2 fields in my table?
When you select that wizard, a window will open which prompts you to add a formula. Merely concatenate the two columns. eg =[Month] & "_" & Text.From([Year])
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 11 | |
| 11 | |
| 4 | |
| 4 | |
| 4 |