Forum Discussion
admin11
Memorable Member
4 years agoHow to create expression for detect new product ?
Hi All I got 2 fields. - Last Sales - Last Purchase Date May i know how to write the expression , when :- Last Sales = 00/00/0000 & Last Purchase Date not = 00/00/0000 is equal to new...
- 4 years ago
Hi,
This calculated column formula works
New Product_final 1 = IF(and(INVC[Last Sales]=blank(),invc[Last Purchase Date]<>blank()),"New product","Existing product")Hope this helps.
admin11
Memorable Member
4 years agoI still get error after modify your script.
new_pro = countrows(filter(values(data[INVC][Last Salesl=blank()&&[Purchase date]<>blank())))
Ashish_Mathur
Super User
4 years agoHi,
This calculated column formula works
New Product_final 1 = IF(and(INVC[Last Sales]=blank(),invc[Last Purchase Date]<>blank()),"New product","Existing product")
Hope this helps.
- admin114 years ago
Memorable Member
- Ashish_Mathur4 years ago
Super User
You are welcome.