sspatriots
Well-known Member
- Joined
- Nov 22, 2011
- Messages
- 585
- Office Version
- 365
- Platform
- Windows
Hi,
I have these two XLOOKUP formulas that I need to combine into one. Both of them will work independently of one another, but I need the multiple criteria to apply in one formula.
First formula:
Second formula:
I tried applying the Boolean logic of the formula (sample below) to apply both conditions, but all I get back is the "#N/A" error.
The formula I tried using to combine the first two conditions into a single formula is shown below:
Note that I am using a wildcard match in both formulas. I'm hoping someone can see what I maybe doing wrong here so I can get it fixed. Thank, SS
I have these two XLOOKUP formulas that I need to combine into one. Both of them will work independently of one another, but I need the multiple criteria to apply in one formula.
First formula:
=XLOOKUP("*"&[@[G1
Job '#]]&"*",tblTable4711[Job '#],tblTable4711[PO '#],,2)
Second formula:
=XLOOKUP("*" & "Machine" & "*", tblTable4711[Job List Equipment],tblTable4711[PO '#],,2)
I tried applying the Boolean logic of the formula (sample below) to apply both conditions, but all I get back is the "#N/A" error.
=XLOOKUP(1,(criteria1)*(criteria2)*(criteria3),data)
The formula I tried using to combine the first two conditions into a single formula is shown below:
=XLOOKUP(1, (tblTable4711[Job '#] = "*"&[@[G1
Job '#]]&"*") * (tblTable4711[Job List Equipment] = "*" & Machine & "*"),tblTable4711[PO '#],,2)
Note that I am using a wildcard match in both formulas. I'm hoping someone can see what I maybe doing wrong here so I can get it fixed. Thank, SS