Forum Discussion
melgra1965
Sep 08, 2022Copper Contributor
formula
I need to match 2 columns. I need to leave blank spaces when they do not match. example: column a column b 105 105 110 113 ...
PeterBartholomew1
Sep 08, 2022Silver Contributor
To replicate a value from List B only when it occurs in a second List A
= IF(
COUNTIFS(ListA, ListB),
ListB,
"")