Forum Discussion
I need a help
I want a cell (eg. G4) blank or it can take a value based on other cell(eg. F4).
I am writing in G4 =if(F4="","",?) what should i write in place of ? to take the manual entries.
6 Replies
- JMB17Bronze Contributor
You could set up a custom function to get user input via input box and use something like:
=IF(F4="","",GetUserInput())
But, I've no idea how often excel might trigger it to re-calculate and you'd spend a bunch of time re-inputting the data, so it can technically be done but I wouldn't think it practical.
- JMB17Bronze ContributorIn these cases, I set up a nearby cell for manual input (say E4), then
=If(F4="","",E4) - Riny_van_EekelenPlatinum Contributor
Prakash_C My guess it that it could be
=IF(F4="","",F4)This will leave G4 blank if F4 is blank, otherwise it take whatever value is in F4.
- Prakash_CCopper Contributor
Riny_van_Eekelen Thanks for the reply, I want Manual entries (User defined) to be taken in False condition. But it takes the value of F4.
- Riny_van_EekelenPlatinum Contributor
Prakash_C Don't understand, sorry! You can't have a formula in order to enter a value manually.