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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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..
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 82 | |
| 68 | |
| 50 | |
| 46 |