Excel formula is only showing the formula rather t

2019-06-15 11:00发布

I've written a formula within an Excel Cell, in Office 2010, and I expect the cell to show its value, but it still shows the formula. How do I get the cell to show the value rather than the formula?

6条回答
淡お忘
2楼-- · 2019-06-15 11:12

Make sure the format of the cell is set to 'general' not 'text' (right click on cell and choose format cell)

Formula should look something like this:

=1+2
查看更多
唯我独甜
3楼-- · 2019-06-15 11:16

Add an = at the beginning. That makes it a function rather than an entry.

查看更多
何必那么认真
4楼-- · 2019-06-15 11:25

Check if there is whitespace before = sign of excel formula

查看更多
乱世女痞
5楼-- · 2019-06-15 11:26

Make sure you include the = sign in addition to passing the arguments to the function. I.E.

=SUM(A1:A3) //this would give you the sum of cells A1, A2, and A3.

查看更多
再贱就再见
6楼-- · 2019-06-15 11:34

You might be in formula view:

Hit Ctrl + ` to switch

查看更多
别忘想泡老子
7楼-- · 2019-06-15 11:34

Check the formatting (right click on cell, Format Cells). Under tab "Number" the category should be "General". If, for instance, it's "Text" anything typed in would be treated as a string rather than a formula to be interpreted.

查看更多
登录 后发表回答