Excel formula for blank cell

Sivas

New Member
Joined
Aug 29, 2018
Messages
20
Need a help on Excel Formula.

I have 2 columns, Column A & Column B.

Column A has date in it as 3/5/2019. if there is date, Column B should return as 05-Mar. If Column A is blank, Column B should be blank.

I have a formula as

=IF(ISBLANK(A10)," ",IF(A10="Yes","No"))

but it is not giving correct answer. Can anyone help on this formula.


<tbody>
</tbody>
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Presuming its just formatting in column B that changes the look of the date its:

=IF(A10="","",A10)
 
Upvote 0
Thank you for the reply.

But if Column A is blank, the column B is not getting blank.
 
Upvote 0
Try this in B10:

=IF(ISBLANK(A10),"",A10)

Then format B10 in dd-mmm format
 
Upvote 0
What is cell A10 with the date 3/5/2019 formatted as?
In Australia that date is equivalent of 3rd of May .
You probably need to play around with custom formatting.
 
Upvote 0
I have assumed your exercise is in cells A10 and B10.
Excel Workbook
AB
103/05/20193-May
Sheet1



A10 is formatted simply as DATE
B10 is custom formatted as d/mmm
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,717
Members
448,985
Latest member
chocbudda

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