This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
I wanna create a column "Bay & Level" using PickAisle, PickModule, PickBay & PickLevel.
Eg: 42B-003-3. If the value is NULL, I want it to be blank.
Mode: Direct Query
I am getting the values correctly except for NULL values. Could someone help me?
Solved! Go to Solution.
Hi @Anonymous,
try the following formula:
[PickAisle] & "-" &(if [PickModule] = null then " " else [PickModule]) & "-" & [PickBay] & "-" & [PickLevel]
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsNot sure if your expectation is the following result. If it is, you can try use Power Query Column from Examples feature to do it.
Go to Query Editor->Column from Examples->From All Columns, fill in the merged results in the first value, then Power BI will create the following values accordingly.
Hi @Anonymous,
try the following formula:
[PickAisle] & "-" &(if [PickModule] = null then " " else [PickModule]) & "-" & [PickBay] & "-" & [PickLevel]
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi, can I see the whole formula for this please?
Hi @workonpower ,
Not sure if this is what you are refering to but:
[PickAisle] & "-" & (
if [PickModule] = null then " "
else [PickModule]) & "-" & [PickBay] & "-" & [PickLevel]
This formula is for M language used in the query editor.
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsCheck out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 26 | |
| 25 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 50 | |
| 26 | |
| 20 | |
| 19 |