SOLVED

Formula Help Please

Copper Contributor

Hi 

Hope somebody can help me please....

Below is a copy of 3 cells, what I am trying to do is when a 'W' is entered, it auto copies the figures into the blank cell.

 £                  9,875.00 W

 

What is the formula to achieve this please?

2 Replies
best response confirmed by Hans Vogelaar (MVP)
Solution

@RodDavis 

In the attached file you can enter "W" in any cell in range H2:H20 and the worksheet.change event will put the value from column F in column G.

 

In the attached file you can enter "W" in range D2:D20 and the formula below puts the value from column B in column C.

=IF(D2="W",B2,"")

 

@OliverScheurich
Thanks that's perfect
1 best response

Accepted Solutions
best response confirmed by Hans Vogelaar (MVP)
Solution

@RodDavis 

In the attached file you can enter "W" in any cell in range H2:H20 and the worksheet.change event will put the value from column F in column G.

 

In the attached file you can enter "W" in range D2:D20 and the formula below puts the value from column B in column C.

=IF(D2="W",B2,"")

 

View solution in original post