Changing cell values that are empty using formulas

zendog1960

Active Member
Joined
Sep 27, 2003
Messages
459
Office Version
  1. 2019
Platform
  1. Windows
It's been a while since I las posted anything. I has trying something in excel but I am not sure if it's possible. Here's the problem:

A1 is a blank cell. No formulas or anything.
B1 let's say has a value of 1.33
In C1, I would like to create a formula that will if B1 is not blank, the make A1 = B1.

I am doing this in an attempt to keep A1 clean of Formulas so if the user knows the value of A1, they can be directly inputted into A1.

I hope I explained this with enough clarity to get an answer. It funny how you know what you want to do but it's far more difficult to express into words. I digress, Any help would be extremely appreciated, and as always, thank you in advance!

Zendog
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
In C1, I would like to create a formula that will if B1 is not blank, the make A1 = B1.

You cannot do that by formula
- the formula would need to be in A1 if you want A1 = B1

This formula returns the value of B1 if B1 is not empty
=IF(ISBLANK(B1),"",B1)
 
Upvote 0
Thanks Yongle. At bit of wishful thinking I guess. Time to roll up the sleeves and dig into VBA again. Was kinda hoping to avoid that but such is the life in excel!
 
Upvote 0

Forum statistics

Threads
1,215,516
Messages
6,125,286
Members
449,218
Latest member
Excel Master

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top