-1

I'm trying to set the maximum number of a column to 50, so any number greater than 50 should show up as 50 in the spreadsheet. I'm not sure if using find and replace is the way to go. I can't seem to find a way to make find and replace look for numbers greater than 50.

Thanks

1 Answers1

0

Never mind found an easy way to do it with an if statement. Ended up using

=IF(B1>50;50;B1)