Excel MATCH range without specific CELL
问题 after a deep search on the internet i gave up. My "simple" question would be: How can I add two ranges in a formula, preferably in MATCH? I want to search a range like A1:A7 + A9:A20 and thus not include A8 in my range. Is this possible? Please help me out 回答1: Natively you can't but you could try to bypass it with either: Exclude a single cell: If you want to exclude a certain cell from a MATCH you can exclude it's certain row number like so: =MATCH(1,(A1:A20="X")*(ROW(A1:A20)<>8),0) Or