Reputation: 1334
I have a column with around 2000 rows with with a SUM formula and differentes ranges. For example:
=SUM(H2:H7)
=SUM(H8:H11)
=SUM(H12:H15)
...
What I need is:
=MAX(C2:C7)
=MAX(C8:C11)
=MAX(C12:C15)
...
How can I do this?
Upvotes: 1
Views: 57
Reputation: 5147
You just have to:
find & replace
moduleSUM
and replace with MAX
H
and replace with C
Done.
Upvotes: 4