Excel programming: 參照範圍怎樣寫,請指教

2007-09-20 7:49 am
在A1儲存格內的值為12
在A2儲存格內的值為22
在A3儲存格內的值為18
在B1儲存格內顯示了範圍A1:A3

我想從B1顯示的範圍內(即A1:A3內)取得參照範圍,從而在C1儲存格內顯示最大值為22,及在D1儲存格內顯示最少值為12。
我試過在C1格內輸入 =max(B1), 在D1格內輸入 =min(B1),但不成功。
請各位指教,謝謝。

回答 (2)

2007-09-20 5:40 pm
✔ 最佳答案
利用 INDIRECT函數
C1 = MAX(INDIRECT(B1))
D1=MIN(INDIRECT(B1))
就可以了.
2007-09-20 9:37 am
select the range of cell you want, according to B1, it should be a1:a3,
name it as "my_range"
(or whatever you like, the name box is at the left end of the formula bar),
then C1 =max(my_range) and D1 =min(my_range)


收錄日期: 2021-04-13 13:33:32
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20070919000051KK04699

檢視 Wayback Machine 備份