Transparent Cell Borders For Formula Cells?

N

Naji

Hey guys, I've searched high and low for a solution to this, and as a
last resort, I've come to the forums for some help.

For range C1:ZZ3 , I have the following formulas,

C1 : =IF(DAY(C$3)=1,CHOOSE(MONTH(C
$3),"JAN","FEB","MAR","APR","MAY","JUN","JUL","AUG","SEP","OCT","NOV","DEC"),"")

C2: =CHOOSE(WEEKDAY(C$3),"S","M","T","W","T","F","S")

C3: = DATE + 1 (Incrementing the initial date by 1 as you progress
through the columns)

Now, please bare in mind I have simplified the issue to help me
explain this, but here it is:

I am actually only talking about the first row here,

If I paste the formula all the way across, most cells will be "" blank
cells because the month only shows up at the first of every month. So
lets say it's the first of the month and cell C1 would be "JULY", only
the "J" is visible because the formula in C2 cuts it off. How can I
make it so that blank formula results will have transparent cell
formats so that the entire text of JULY is visible without it being
cut off by the following cell? How can I correct this problem? If
anyone can help with this, I will be very grateful! Thank you!

-Naji
 
B

Bob I

I must be missing something here, How can "C2" cut off the something in
"C1"? C2 is below C1. What you put in D1 would cut off C1.
 
S

Sandy Mann

Bob I said:
I must be missing something here, How can "C2" cut off the something in
"C1"? C2 is below C1. What you put in D1 would cut off C1.

If C3=1 then the formula in C1 will return "July" (say) However, D1 & D3
have the same formulas dragged acoss, D3 cannot be 1 because C3 was,
therefore the formaula will return "" whcih will cut off the "July" if the
column is only wide enough the show the "J"

As far a I know there is not way around this - unless you know better.

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 
R

Rick Rothstein \(MVP - VB\)

I realize you asked a different question, but I thought you might be
interested in these shorter formulas....
C1 : =IF(DAY(C$3)=1,CHOOSE(MONTH(C
$3),"JAN","FEB","MAR","APR","MAY","JUN","JUL","AUG","SEP","OCT","NOV","DEC"),"")

The above formula can be replaced with this...

C1: =UPPER(TEXT(C$3,"mmm"))

C2: =CHOOSE(WEEKDAY(C$3),"S","M","T","W","T","F","S")

The above formula can be replaced with this...

C2: =LEFT(TEXT(C$3,"ddd"),1)


Rick
 
S

Sandy Mann

UsingRicks formula the you can spell out the Month name one letter at a time
by using:

=IF(DAY(C3)<10,MID(UPPER(TEXT(C3,"mmmm")),DAY(C3),1),"")

in C1 and dragging across

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 
S

Sandy Mann

Yes I surmised that. The formula I posted will enter J In C1, U in D1, L in
E1, Y in F1 and "" in every other cell until it encounters another 1 in row
3

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top