Forum Discussion
Anonymous
8 years agoNot applicable
Isblank function and concatenate in Direct Query
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 corr...
- 8 years ago
Hi Anonymous,
try the following formula:
[PickAisle] & "-" &(if [PickModule] = null then " " else [PickModule]) & "-" & [PickBay] & "-" & [PickLevel]
Regards,
MFelix
workonpower
6 years agoNew Member
Hi, can I see the whole formula for this please?
MFelix
6 years agoSuper User
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