Excel get max between two cells (NOT RANGE)

后端 未结 1 1978
独厮守ぢ
独厮守ぢ 2021-01-22 14:02

The MAX function gives me the maximum number in a range but what if my cells are not in a range?

If we have in A1 the number 10m and in D11 the number 8m ho

相关标签:
1条回答
  • 2021-01-22 14:37

    You can specify a set of cells instead of a range:

    max(A1;A4;A10;A12)
    

    In your case:

    max(A1;D11)
    
    0 讨论(0)
提交回复
热议问题