Forum Discussion
Help with column creation and additional data sort
LukeFPowerBI ,
#Power Query # Add Column
If [TillName]=Blank() Then "backoffice" Else [TillName]
# Power Query
Select Column Right Click >> Replce Value With Blank >> "backoffice".
#DAX
IF(tillname= Blank(),"backoffice",TillName)
*If this post helps, please consider accept as solution to help other members find it more quickly and Appreciate your Kudos.
Hello Mahesh0016 thanks for the response, its sadly not as simple as that.
Basically this is what i have via sql for this so far:
Online = ReceivedOnline = 1
SM = ReceivedOnline = 0 and TillID IS NULL
EPOS = ReceivedOnline = 0 and TillID IS NOT NULL
if that makes more sense, if i update all blanks to back office, then the figures will not work it needs to follow that exact mapping, i have troed created a column within the table that references these as the 'filter' if you like but i am really not getting anywhere fast.