Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi Good day,
Can someone pls need assistance on my query, I have table with Week No. and I want to add column with Week name on its week no. something like below.
Thank you
Solved! Go to Solution.
Hi @AllanBerces ,
Create a new column on your table with the following DAX:
Week ID = "Week: " & Table[Week No.]
Make sure to replace the table and column names with your owns
Hi @AllanBerces ,
Create a new column on your table with the following DAX:
Week ID = "Week: " & Table[Week No.]
Make sure to replace the table and column names with your owns