Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
ravindraa
Creator
Creator

Null values getting

hi i have one requierment i need to get only when customer is equal to zero.
The customer field have below value like


Customer

                                        <- this is the null value

L
C

                                         <- this is the null value


To get the Values based on the condition like below

in the edit script level i wrote below conditon


Customer:

Load
customer,
Id  where match(customer,'  ');

sql from customer;

Please give any suggesion one this.
Thanks for advance.


1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Load * Inline

[

  Customer, Sales

  , 100

  L, 120

  C, 140

  , 200

] Where IsNull(Customer) or Len(Trim(Customer))= 0;

View solution in original post

4 Replies
MK_QSL
MVP
MVP

Load * Inline

[

  Customer, Sales

  , 100

  L, 120

  C, 140

  , 200

] Where IsNull(Customer) or Len(Trim(Customer))= 0;

MayilVahanan

HI

Try like this

Customer:

Load
customer,
Id  where Len(Trim(customer)) =0;

sql select * from customer;

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
ravindraa
Creator
Creator
Author

Thank you very much Manish Kachhia.


it is working fine.

ravindraa
Creator
Creator
Author

Thank you very much Mayil Vahana Ramasamy,
it is working fine.