GreenyMcDuff
Active Member
- Joined
- Sep 20, 2010
- Messages
- 313
Hi all,
I have the following data sheet:
I need a formula that works in the following way:
IF Type 2 = "Bid" Then
Copy Price C to Price A
Copy Price D to Price B
Copy Date 2 to Date 1
This is a formula that I came up with.... it does not do the trick
Thanks for your help
Chris
I have the following data sheet:
HTML:
Price A Price B Type 1 Date 1 Price C Price D Type 2 Date 2
A B Trade 10/05/2011
A B Trade 10/05/2011
A B Bid 10/05/2011
I need a formula that works in the following way:
IF Type 2 = "Bid" Then
Copy Price C to Price A
Copy Price D to Price B
Copy Date 2 to Date 1
This is a formula that I came up with.... it does not do the trick
Code:
=IF(S1="Bid",(M1=Q1,N1=R1,P1=U1),"")
Thanks for your help
Chris