pawelj795Post Prodigy6 years agoSolvedRow 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? Show Moreaz38 to pawelj7956 years agopawelj795 🙂 TEST= var VVS = SEARCH("VVS"; Warehouse[Item Name]; 1; BLANK()) RETURN IF(ISBLANK(VVR); "Undefined"; MID(Warehouse[Item Name]; VVS+4; 3))
az38 to pawelj7956 years agopawelj795 🙂 TEST= var VVS = SEARCH("VVS"; Warehouse[Item Name]; 1; BLANK()) RETURN IF(ISBLANK(VVR); "Undefined"; MID(Warehouse[Item Name]; VVS+4; 3))
az38 to pawelj7956 years agopawelj795 🙂 TEST= var VVS = SEARCH("VVS"; Warehouse[Item Name]; 1; BLANK()) RETURN IF(ISBLANK(VVR); "Undefined"; MID(Warehouse[Item Name]; VVS+4; 3))
az38Community Champion6 years agoHi pawelj795 for example you can create a calculated column _isContain = IF(SEARCH("VVS150", [Column]) > 0, TRUE(), FALSE()) then filter in visual by this new column or to create a new calculated table _newTable = FILTER(Table, SEARCH("VVS150", Table[Column]) > 0)
pawelj795Post Prodigy to az386 years agoaz38 It's a only a bit of much complicated function, so it must end in one formula. I ask differently.From above screenshot I want to RETURN three digits.Where is my mistake?
Related contentIf text column CONTAINS specified value, give me what I wantCheck if column contains ONLY specified valueContain WordCount rows containing valueData source error: Value was not specified..