ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   How to specific the cell format? (https://www.excelbanter.com/excel-worksheet-functions/126578-how-specific-cell-format.html)

Eric

How to specific the cell format?
 
Refering to the post in general question
Does anyone know how to do it in excel?
In cell A1, if text within this cell is "Daily", then the cell B1 will show
the date in this format "18-Jan". If cell A1, if text within this cell is
"Monthly", then teh cell B1 will show the date in this format "Jan-07"
Does anyone have any suggestion?

Thank you for any suggestion
Eric

JE McGimpsey

How to specific the cell format?
 
See one answer to your identical post in microsoft.public.excel.misc.

In article ,
Eric wrote:

Refering to the post in general question
Does anyone know how to do it in excel?
In cell A1, if text within this cell is "Daily", then the cell B1 will show
the date in this format "18-Jan". If cell A1, if text within this cell is
"Monthly", then teh cell B1 will show the date in this format "Jan-07"
Does anyone have any suggestion?

Thank you for any suggestion
Eric


Teethless mama

How to specific the cell format?
 
=IF(A1="","",IF(A1="Daily",TEXT(TODAY(),"dd-mmm"),TEXT(TODAY(),"mmm-yy")))

"Eric" wrote:

Refering to the post in general question
Does anyone know how to do it in excel?
In cell A1, if text within this cell is "Daily", then the cell B1 will show
the date in this format "18-Jan". If cell A1, if text within this cell is
"Monthly", then teh cell B1 will show the date in this format "Jan-07"
Does anyone have any suggestion?

Thank you for any suggestion
Eric


Epinn

How to specific the cell format?
 
How about this?

=TEXT(TODAY(), IF(A1="Daily", "dd-mmm", IF(A1="Monthly", "mmm-yy",
"")))

OR

=TEXT(TODAY(), IF(TRIM(A1)="Daily", "dd-mmm", IF(TRIM(A1)="Monthly", "mmm-yy",
""))) which takes care of leading spaces.

If you accidentally key in a space and Daily in A1, the first formula will not return day and month but the second formula will.

Experts, please feel free to correct me.

Epinn

"Eric" wrote in message ...
Refering to the post in general question
Does anyone know how to do it in excel?
In cell A1, if text within this cell is "Daily", then the cell B1 will show
the date in this format "18-Jan". If cell A1, if text within this cell is
"Monthly", then teh cell B1 will show the date in this format "Jan-07"
Does anyone have any suggestion?

Thank you for any suggestion
Eric


Epinn

How to specific the cell format?
 
Not sure how you want to use the formula; part of a heading for a report template?

Anyway, word of caution:

Since TODAY() is a volatile function and it gets changed every time when the worksheet is accessed, you may want to lock in the result of the formula by doing editpaste specialvalue.

Comments welcome.

Epinn

"Epinn" wrote in message ...
How about this?

=TEXT(TODAY(), IF(A1="Daily", "dd-mmm", IF(A1="Monthly", "mmm-yy",
"")))

OR

=TEXT(TODAY(), IF(TRIM(A1)="Daily", "dd-mmm", IF(TRIM(A1)="Monthly", "mmm-yy",
""))) which takes care of leading spaces.

If you accidentally key in a space and Daily in A1, the first formula will not return day and month but the second formula will.

Experts, please feel free to correct me.

Epinn

"Eric" wrote in message ...
Refering to the post in general question
Does anyone know how to do it in excel?
In cell A1, if text within this cell is "Daily", then the cell B1 will show
the date in this format "18-Jan". If cell A1, if text within this cell is
"Monthly", then teh cell B1 will show the date in this format "Jan-07"
Does anyone have any suggestion?

Thank you for any suggestion
Eric



Epinn

How to specific the cell format?
 
Actually, there is an easier way than paste specialvalue.

I just learned that I can enter the formula with Ctrl+; (semicolon) to lock in the date.

Epinn

"Epinn" wrote in message ...
Not sure how you want to use the formula; part of a heading for a report template?

Anyway, word of caution:

Since TODAY() is a volatile function and it gets changed every time when the worksheet is accessed, you may want to lock in the result of the formula by doing editpaste specialvalue.

Comments welcome.

Epinn

"Epinn" wrote in message ...
How about this?

=TEXT(TODAY(), IF(A1="Daily", "dd-mmm", IF(A1="Monthly", "mmm-yy",
"")))

OR

=TEXT(TODAY(), IF(TRIM(A1)="Daily", "dd-mmm", IF(TRIM(A1)="Monthly", "mmm-yy",
""))) which takes care of leading spaces.

If you accidentally key in a space and Daily in A1, the first formula will not return day and month but the second formula will.

Experts, please feel free to correct me.

Epinn

"Eric" wrote in message ...
Refering to the post in general question
Does anyone know how to do it in excel?
In cell A1, if text within this cell is "Daily", then the cell B1 will show
the date in this format "18-Jan". If cell A1, if text within this cell is
"Monthly", then teh cell B1 will show the date in this format "Jan-07"
Does anyone have any suggestion?

Thank you for any suggestion
Eric




Epinn

How to specific the cell format?
 
I just learned that I can enter the formula with Ctrl+; (semicolon) to lock in the date. <<

I better clarify that the formula is =TODAY() and *not* the ones posted earlier.

Sorry for the confusion.

Epinn

"Epinn" wrote in message ...
Actually, there is an easier way than paste specialvalue.

I just learned that I can enter the formula with Ctrl+; (semicolon) to lock in the date.

Epinn

"Epinn" wrote in message ...
Not sure how you want to use the formula; part of a heading for a report template?

Anyway, word of caution:

Since TODAY() is a volatile function and it gets changed every time when the worksheet is accessed, you may want to lock in the result of the formula by doing editpaste specialvalue.

Comments welcome.

Epinn

"Epinn" wrote in message ...
How about this?

=TEXT(TODAY(), IF(A1="Daily", "dd-mmm", IF(A1="Monthly", "mmm-yy",
"")))

OR

=TEXT(TODAY(), IF(TRIM(A1)="Daily", "dd-mmm", IF(TRIM(A1)="Monthly", "mmm-yy",
""))) which takes care of leading spaces.

If you accidentally key in a space and Daily in A1, the first formula will not return day and month but the second formula will.

Experts, please feel free to correct me.

Epinn

"Eric" wrote in message ...
Refering to the post in general question
Does anyone know how to do it in excel?
In cell A1, if text within this cell is "Daily", then the cell B1 will show
the date in this format "18-Jan". If cell A1, if text within this cell is
"Monthly", then teh cell B1 will show the date in this format "Jan-07"
Does anyone have any suggestion?

Thank you for any suggestion
Eric






All times are GMT +1. The time now is 09:38 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com