Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 60
Default Link an IF to a Vlooup

Hello,

What I need to achive in cell B1 is: if A3 = "pippo" then value*exchange
rate, "", otherwise leave it blank


In A3 there is Vlookup returning a name.
As I said depending on the name I need the if function
in B1 to multiply the value by the exchange rate - USD to EURO

Problem
A3 contains a Vlookup and it does not return the name to the cell B1 that
contains the IF function therefore I am not able to establish if the formula
can or cannot convert the value from USD into EURO -

B1 is returning only true or false but not the name in A3 - The name (pippo)
in B1 is what I need.


Hope you can help - Thank you - Arno


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,420
Default Link an IF to a Vlooup

I think I am missing something here, but why can't you just test A3

B1: =IF(A3="pippo",value*exchange,"")

where are value ad exchange?

--
__________________________________
HTH

Bob

"Arno" wrote in message
...
Hello,

What I need to achive in cell B1 is: if A3 = "pippo" then value*exchange
rate, "", otherwise leave it blank


In A3 there is Vlookup returning a name.
As I said depending on the name I need the if function
in B1 to multiply the value by the exchange rate - USD to EURO

Problem
A3 contains a Vlookup and it does not return the name to the cell B1 that
contains the IF function therefore I am not able to establish if the
formula
can or cannot convert the value from USD into EURO -

B1 is returning only true or false but not the name in A3 - The name
(pippo)
in B1 is what I need.


Hope you can help - Thank you - Arno




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 60
Default Link an IF to a Vlooup

Hi Bob,

valu can be anything let's say 5 and exchange rate 0.77 therefo

B1: =IF(A3="pippo",5*0.77,"")



"Bob Phillips" wrote:

I think I am missing something here, but why can't you just test A3

B1: =IF(A3="pippo",value*exchange,"")

where are value ad exchange?

--
__________________________________
HTH

Bob

"Arno" wrote in message
...
Hello,

What I need to achive in cell B1 is: if A3 = "pippo" then value*exchange
rate, "", otherwise leave it blank


In A3 there is Vlookup returning a name.
As I said depending on the name I need the if function
in B1 to multiply the value by the exchange rate - USD to EURO

Problem
A3 contains a Vlookup and it does not return the name to the cell B1 that
contains the IF function therefore I am not able to establish if the
formula
can or cannot convert the value from USD into EURO -

B1 is returning only true or false but not the name in A3 - The name
(pippo)
in B1 is what I need.


Hope you can help - Thank you - Arno





  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 60
Default Link an IF to a Vlooup

Sorry Bob,

not really sure what you mean by testing A3 however I have more than one
name that is why I need in B1 an IF formula to apply the exchange rate
depending on the name

Thanks

"Bob Phillips" wrote:

I think I am missing something here, but why can't you just test A3

B1: =IF(A3="pippo",value*exchange,"")

where are value ad exchange?

--
__________________________________
HTH

Bob

"Arno" wrote in message
...
Hello,

What I need to achive in cell B1 is: if A3 = "pippo" then value*exchange
rate, "", otherwise leave it blank


In A3 there is Vlookup returning a name.
As I said depending on the name I need the if function
in B1 to multiply the value by the exchange rate - USD to EURO

Problem
A3 contains a Vlookup and it does not return the name to the cell B1 that
contains the IF function therefore I am not able to establish if the
formula
can or cannot convert the value from USD into EURO -

B1 is returning only true or false but not the name in A3 - The name
(pippo)
in B1 is what I need.


Hope you can help - Thank you - Arno





  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,420
Default Link an IF to a Vlooup

Give some examples of the data and the results, it is just not making sense
yet.

--
__________________________________
HTH

Bob

"Arno" wrote in message
...
Sorry Bob,

not really sure what you mean by testing A3 however I have more than one
name that is why I need in B1 an IF formula to apply the exchange rate
depending on the name

Thanks

"Bob Phillips" wrote:

I think I am missing something here, but why can't you just test A3

B1: =IF(A3="pippo",value*exchange,"")

where are value ad exchange?

--
__________________________________
HTH

Bob

"Arno" wrote in message
...
Hello,

What I need to achive in cell B1 is: if A3 = "pippo" then
value*exchange
rate, "", otherwise leave it blank


In A3 there is Vlookup returning a name.
As I said depending on the name I need the if function
in B1 to multiply the value by the exchange rate - USD to EURO

Problem
A3 contains a Vlookup and it does not return the name to the cell B1
that
contains the IF function therefore I am not able to establish if the
formula
can or cannot convert the value from USD into EURO -

B1 is returning only true or false but not the name in A3 - The name
(pippo)
in B1 is what I need.


Hope you can help - Thank you - Arno









  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 60
Default Link an IF to a Vlooup

W.Order Value Agency
5897.69 70.00 AIB
6544.83 80.00 MOODY
3136.50 40.00 BIE
#N/A 40.00
#N/A 40.00
#N/A 40.00
#N/A 40.00
#N/A 40.00
3136.50 40.00 BIE (in this cell L11 there is a vlookup)

Est. Rate
A11 = 78.41 USD THIS IS WHAT I NEED: E11 = IF(L11="MOODY", A11*A12,"")

A12= 0.77 Exchange rate

As I said unfortunately E11 is returning FALSE and not the agency name :)

"Bob Phillips" wrote:

Give some examples of the data and the results, it is just not making sense
yet.

--
__________________________________
HTH

Bob

"Arno" wrote in message
...
Sorry Bob,

not really sure what you mean by testing A3 however I have more than one
name that is why I need in B1 an IF formula to apply the exchange rate
depending on the name

Thanks

"Bob Phillips" wrote:

I think I am missing something here, but why can't you just test A3

B1: =IF(A3="pippo",value*exchange,"")

where are value ad exchange?

--
__________________________________
HTH

Bob

"Arno" wrote in message
...
Hello,

What I need to achive in cell B1 is: if A3 = "pippo" then
value*exchange
rate, "", otherwise leave it blank


In A3 there is Vlookup returning a name.
As I said depending on the name I need the if function
in B1 to multiply the value by the exchange rate - USD to EURO

Problem
A3 contains a Vlookup and it does not return the name to the cell B1
that
contains the IF function therefore I am not able to establish if the
formula
can or cannot convert the value from USD into EURO -

B1 is returning only true or false but not the name in A3 - The name
(pippo)
in B1 is what I need.


Hope you can help - Thank you - Arno








Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
VLOOUP Matt Excel Discussion (Misc queries) 2 January 24th 08 04:41 PM
VLOOUP Nena[_2_] Excel Programming 1 August 29th 07 06:44 AM
vlooup with an if statement????? samiauthor Excel Worksheet Functions 2 August 14th 07 03:43 PM
vlooup formula and if(),isna etc Claudia Excel Worksheet Functions 3 May 29th 07 01:17 PM
Linking cells (VLOOUP/IF function maybe?) GregA Setting up and Configuration of Excel 2 August 20th 06 01:15 AM


All times are GMT +1. The time now is 04:53 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"