If type= Non Billing ..I need Customer Column Blank text…
Select returns a list.
" " is a text.
The types have to match.
5 Likes
Right. @BHUVANESH , for the “else” argument you can return an empty list: LIST().
Your SELECT function returns all records. So, you could probably omit it and use just Invoice[Customer].
Potentially, it would also work to instead use just IFS(): IFS([Type] = “Billing”, Invoice[Customer]).
1 Like
Oh Thanks For Ur Reply..I Use list()..Hence it Works..
1 Like