Formula to return cell value in Excel
Closed
jt13
Posts
1
Registration date
Friday February 2, 2018
Status
Member
Last seen
February 2, 2018
-
Updated on Feb 2, 2018 at 02:18 PM
BrianGreen Posts 1005 Registration date Saturday January 17, 2015 Status Moderator Last seen September 30, 2021 - Feb 2, 2018 at 03:43 PM
BrianGreen Posts 1005 Registration date Saturday January 17, 2015 Status Moderator Last seen September 30, 2021 - Feb 2, 2018 at 03:43 PM
Related:
- Formula to return cell value in Excel
- Number to words in excel formula - Guide
- Excel grade formula - Guide
- Date formula in excel dd/mm/yyyy - Guide
- Position formula in excel ✓ - Excel Forum
- 1st, 2nd, 3rd position formula in excel - Office Software Forum
1 response
BrianGreen
Posts
1005
Registration date
Saturday January 17, 2015
Status
Moderator
Last seen
September 30, 2021
149
Updated on Feb 2, 2018 at 04:02 PM
Updated on Feb 2, 2018 at 04:02 PM
I assume you want the formula to be in cell D2. Also, Im not sure this answer is correct as you dont really say if you want a different cell to have this formula, but assuming I'm right here then Im not sure you can do this meaningfully, because as soon as you enter a value into D2 it will overwrite the formula. But this works ... sort of. It adds the words 'Your Default Input' into cell D2 until you overwrite it.
or if you want to enter the contents of another cell (I used contents of A1 in this example) then
Perhaps you should investigate a macro, which will need a button to activate it, so isnt ineractive.
Really we need more information - the data you need to display, the target cell, the cell where the formula will be placed, and the cell where the information you want to display if D2 is empty.
=IF(D2="","Your Default Input")
or if you want to enter the contents of another cell (I used contents of A1 in this example) then
=IF(D2="",A1)
Perhaps you should investigate a macro, which will need a button to activate it, so isnt ineractive.
Really we need more information - the data you need to display, the target cell, the cell where the formula will be placed, and the cell where the information you want to display if D2 is empty.