Forum Discussion
pawelj795
6 years agoPost Prodigy
Row contains specified value
Hi, I have a column like below. I want to return rows which contain let's say VVS150. How to do this?
az38
6 years agoCommunity Champion
try to replace BlANK() to 0 in your var statement - MID should have a digit second argument, BlANK() will provide an expected error
or try to obtain MID in if like
IF(ISBLANK(VVR); "Undefined"; MID(Warehouse[Item Name];VVS;3))
pawelj795
6 years agoPost Prodigy
az38
Your first solution return same error.
But I can't understand your second idea.
What VVR and "Undefined" in your statement mean?
- az386 years agoCommunity Champion
it will check - if VVR returns BLANK() value then column wll be equal "Undefined" or anything you want instead. If VVR returns digit it will execute MID() function