I am trying to find multiple entries that meet my criteria.
this works great--
Work_Order: IIf(IIf(InStr(1 ,[ML]![Description],"200")>0,Val(M id([ML]![Description],
InStr(1,[ML]![Description],"200"),9)))>20 0000000,Mid([ML]![Description],
InStr(1,[ML]![Description],"200"),9))
Example result = 200158687. My problem is this field has more than 1 number that I need to extract. My table format has 2 columns: named
CRnum and Description. I need a record for each Work_Order
ie:
CRnum Work_Order.
this works great--
Work_Order: IIf(IIf(InStr(1 ,[ML]![Description],"200")>0,Val(M id([ML]![Description],
InStr(1,[ML]![Description],"200"),9)))>20 0000000,Mid([ML]![Description],
InStr(1,[ML]![Description],"200"),9))
Example result = 200158687. My problem is this field has more than 1 number that I need to extract. My table format has 2 columns: named
CRnum and Description. I need a record for each Work_Order
ie:
CRnum Work_Order.
Comment