Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi I have a quarter column Qtr in my report which shows as 1,2,3,4 but in my final report I need to show it as Q1,Q2.But it has null values ,so i cannot use concatenate function directly as blank cell should be shown as blank only.How can i write this??
| Qtr | calculatedcolumn need to be concatenated with Q |
| null | null |
| 1 | Q1 |
| 2 | Q2 |
| 3 | Q3 |
| 4 | Q4 |
Thanks
Swapna.
Solved! Go to Solution.
@kan -
Try:
Concat =
IF(
(Table1[Qtr]),
CONCATENATE("Q",Table1[Qtr])
)
Proud to be a Super User!
@kan -
Try:
Concat =
IF(
(Table1[Qtr]),
CONCATENATE("Q",Table1[Qtr])
)
Proud to be a Super User!
Thanks it worked for me..
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 84 | |
| 49 | |
| 38 | |
| 31 | |
| 30 |