Mar 14 2024 06:44 AM
Hi there
I am trying to speed up something I have to do manually at work every morning.
Columns A & B are exported from software: A is a product code. B is the price assigned to that product code.
Columns C & D are exported from daily sales books. C is product code. D is the price that was charged for it.
I want column C to search column A and tell me if the price in Column D is the same as the price in Column B for that product code or not.
Having a complete brain block!!!!
Any help appreciated
Mar 14 2024 07:45 AM
Option 1: using an extra column.
In E1, enter the text "Same Price".
In E2, enter the formula
=LET(p, XLOOKUP(E2, A:A, B:B, ""), IF(p="", "No match", p=D2))
Fill down.
Column E will contain TRUE if the prices are the same, FALSE if they are different, and "No Match" if the product cannot be found in column A.
Option 2: using conditional formatting.
Select from D2 down to the last used row in columns C/D. D2 should be the active cell in the selection.
On the Home tab of the ribbon, click Conditional Formatting > New Rule...
Select 'Use a formula to determine which cells to format'.
Enter the formula
=XLOOKUP(C2, A:A, B:B, "")<>D2
Click Format...
Activate the Fill tab.
Select a highlight color.
Click OK, then click OK again.
Mar 15 2024 03:37 AM