The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello!
I am converting a formula from Excel into Power BI. The Excel formla is the following:
=IF(OR(ISNUMBER(SEARCH({"tbd"},Y104)),Y104="",),"INCOMPLETE","COMPLETE")
someone did help me out and provided a formula that does seem to be the start of what I'm trying to execute, but it looks like it might be looking for instances where "tbd" is the ONLY value in the cell whereas I need the formula to find instances where "tbd" shows up in the data located in each cell. The formula provided is:
Solved! Go to Solution.
@emembreno81 , Try like
if('rep v_asrt_mo_rep'[Color Short Description] = "" || search("tbd",'rep v_asrt_mo_rep'[Color Short Description],,0)>0 , "INCOMPLETE","COMPLETE")
SEARCH and FIND: https://www.youtube.com/watch?v=mZt0HJw4gjQ&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=45
CONTAINSSTRING and CONTAINSSTRINGEXACT: https://www.youtube.com/watch?v=XbgLGDvWdWQ&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=44
@emembreno81 , Try like
if('rep v_asrt_mo_rep'[Color Short Description] = "" || search("tbd",'rep v_asrt_mo_rep'[Color Short Description],,0)>0 , "INCOMPLETE","COMPLETE")
SEARCH and FIND: https://www.youtube.com/watch?v=mZt0HJw4gjQ&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=45
CONTAINSSTRING and CONTAINSSTRINGEXACT: https://www.youtube.com/watch?v=XbgLGDvWdWQ&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=44
Thank you so much! This did the trick!
User | Count |
---|---|
28 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
33 | |
13 | |
12 | |
9 | |
7 |