Conditional Display

B

Bampah

I have made a sheet for show ticket sales
Col A = Ticket No.
Col B = Name
Col C = Ticket Cost (£6)
Col D = Paid.

Also Col C shows £6 in every row due to the function =IF(D1>3,0,6)
I would only like the £6 to be shown in C1 if there is text in B1. OTW
it is
to remain blank.
I've tried everything to achieve this but can't.
Over to you please
 
B

Biff

Hi!

Tyr this:

=IF(ISTEXT(B1),IF(D1>3,0,6),"")

Biff

I have made a sheet for show ticket sales
Col A = Ticket No.
Col B = Name
Col C = Ticket Cost (£6)
Col D = Paid.

Also Col C shows £6 in every row due to the function =IF(D1>3,0,6)
I would only like the £6 to be shown in C1 if there is text in B1. OTW
it is
to remain blank.
I've tried everything to achieve this but can't.
Over to you please
 
B

Bampah

Thanks Biff

I actually sorted it out myself straight after I posted my plea for
help.

I used this formula

IF(D1>3,0,IF(B1<>"",6,0))

I ahve tried your answer and it works fine also with one strange
result.
When I pasted it into cell C1 it merged cells C1 & C2....bizarre.

Thanks again
 

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