Whilst VLOOKUP and IF functions are useful on their own, together they deliver even more valuable experiences. Today, we will be looking at a few simple examples that will show you how to Vlookup with If condition in Excel. Continue reading
by Svetlana Cheusheva, updated on
Whilst VLOOKUP and IF functions are useful on their own, together they deliver even more valuable experiences. Today, we will be looking at a few simple examples that will show you how to Vlookup with If condition in Excel. Continue reading
Comments page 5. Total comments: 375
Hi there,
I would like to use google sheets to do the following production planning. It is a two part plan.
1) I would like to be able to write on the left the following information in cells A1:D7 for example
Brew Date Batch Number FV No. F. Time
07/06/2021 RF130 FV1 20
08/06/2021 RF131 FV2 16
09/06/2021 RF132 FV3 14
10/06/2021 RF133 FV4 16
11/06/2021 RF134 FV5 30
12/06/2021 RF135 FV6 20
I would then like to automatically populate a schedule that has the days running down it and the fermenter number across with the batch number ie
FV1 FV2 FV3 FV4 FV5 FV6 FV7 FV8 FV9
07/06/2021 RF130
08/06/2021
09/06/2021
10/06/2021
11/06/2021
12/06/2021
13/06/2021
my current formula returning RF130 is a simple IF(AND but I have to enter a million IF and statements as I run down the page
=
IF(AND(A2=F4,C2=G3),B2,IF(AND(A3=F4,C3=G3),B3,IF(AND(A4=F4,C4=G3),B4,IF(AND(A5=F4,C5=G3),B5,
IF(AND(A6=F4,C6=G3),B6,IF(AND(A7=F4,C7=G3),B7,IF(AND(A8=F4,C8=G3),B8,""))))))). etc
I would like to migrate to a formula that matches date and FV number and returns the batch number for the specified FV.
2) The second part of the formula will look at the F.Time and populate down the same batch number for that amount of days.
please help!
cheers
G
Hi
I have list of DMAs for which I need to vlookup states (col 2) but pick only which has max vehicle count in (col 3).
what formula would you recommend?
DMA State Vehicle Count
ALBANY MA 2,272
ALBANY NY 26,361
ALBANY VT 830
SANTA FE. AZ 1,033
SANTA FE. CO 1,132
SANTA FE. NM 26,917
Hello!
You can find the examples and detailed instructions here: How to get matches of largest N values.
I hope it’ll be helpful.
If i want to apply vlookup formula and want to make difference two reference column how can I did it.
Hi Alexander,
I am looking for a formula that looks like a combination of Vlookup and IF function.
following is my scenario:
TAB 1 contains data of numbers negatives to positive, i want to reflect that data to TAB 2 with the condition , if value is less than zero like negative no. then return it as Zero "0" and if above zero then return as it is.
Thank you so much,
Hello!
Please try the following formula:
=IF(Sheet1!A1>0,Sheet1!A1,0)
You can copy this formula down along the column.
Hope this is what you need.
I think i found it , please disregards my question above, thank you
Excel If Vlookup formula to perform different calculations
Besides displaying your own text messages, If function with Vlookup can perform different calculations based on the criteria you specify.
Taking our example further, let's calculate the commission of a specific seller (F1) depending on their effectiveness: 20% commission for those who made $200 and more, 10% for everyone else.
For this, you check if the value returned by Vlookup is greater than or equal to 200, and if it is, multiply it by 20%, otherwise by 10%:
=IF(VLOOKUP(F1,$A$2:$C$10,3,FALSE )>=200, VLOOKUP(F1,$A$2:$C$10,3,FALSE)*20%, VLOOKUP(F1,$A$2:$C$10,3,FALSE)*10%)
This will do, any number multiply zero will equal to zero.
I am looking up a specific value from two tables I set up, one table has one rate, another has a different rate. I am using IF (VLOOKUP, true), (VLOOKUP2, true), false). How do I make the VLOOKUP2 value work? Thanks!
Hello!
Please specify what you were trying to find, what formula you used and what problem or error occurred. Include an example of the source data and the result you want to get. It’ll help me understand the problem you faced better and help you.
Thank you Alexander!
Here is the formula I am trying to make work:
Rule: if Column J is in TableFX25 then Column I* (1-0.025), if column J is in TableFX35, ColumnI*(1-0.035) else Column I*(1-0.03).
The fomula: N8*IF(J8 =(VLOOKUP(J8,'FX Calculation.xlsx'!TableFX25,1,FALSE)),(1-0.025),IF(J8=(VLOOKUP(J8,'FX Calculation.xlsx'!TableFX35,1,FALSE)), (1-0.035), (1-0.03)))
Problem: Vlookup for TableFX35 isn't working - the value in column J isn't being recognized in TableFX35.
Is it because the formula?
Appreciate the help. And let me know should you need further clarification.
Hello!
Use the IFERROR function.
Instead
J8 =(VLOOKUP(J8,’FX Calculation.xlsx’!TableFX25,1,FALSE))
write down
J8 =IFERROR(VLOOKUP(J8,’FX Calculation.xlsx’!TableFX25,1,FALSE),"")
You can learn more about IFERROR function in Excel in this article on our blog.
I am comparing two cells (contains nos.) which have Vlookup formula in it by simple IF formula.
My logical test value is true but it is still not showing the desired result and showing the text of false value.
Where I am going wrong?
Hi!
The information you provided is not enough to understand your case and give you any advice. If the numbers are the result of formula calculations, check the decimal places. Perhaps your numbers differ by the third or fourth digit after the decimal point. Use rounding of results in formulas.
i need function calculate variable discount for different products
with if and & vlookup
trying to write a vlookup with where if is a certain cell i would like it to multiply to the power of 10 and than divide by 2 and if it is not the certain cell than to just multiply by power of 10 here is what i got so far.
=IF(OR(E2="",$D2=""),"",SUM(IF($C2="Buy",(E2-D2),(D2-E2)) * POWER(10, VLOOKUP($L2,'Pairs time power of 10'!$A:$C,3,FALSE)),0))
I need to add this
IF(b2 is 'Pairs time power of 10'!B37,'Trading Journal'!, divide by 2
I hope i explained what im looking for correctly. the equation i have already is perfect for my other pairs for forex, but a few are stubborn and need to be divided by 2, so i am trying to figure it into the equation
Hey,
I have following issue.
for example my If should be: if the content of cel from kolom A on this row occurs in kolom B then it should say "Slave" else it should say "Master"
We used this formule: =IF(VLOOKUP([@[xxx]]=@xxx_HP;1;FALSE)=TRUE;"Master";"Slave")
But we get a #N/A
Thanks
Hi,
It is very difficult to understand a formula that contains unique references to your workbook worksheets.
Explain what xxx and xxx_HP are.
Describe in detail what problem you have, and I will try to help you.
Hello,
I am trying to lookup 3 criteria's from a range of data on a different sheet, and match to 3 criteria's on my current sheet and if they all match say "Yes", if Not say "No".
Can you please help me with that.
Thanks
Hello!
Please re-check the article above since it covers your task.
I cannot give more detailed advice, since I do not have your data. If something is still unclear, please feel free to ask.
good day, I want to extract information out of an excel table for every customer that needs a refund. i made a column that states "REFUND DUE" and it says "yes" or "no" for when refund is or isnt due. i need to extract all the "yes" to another table. what formula can i use to do so?
Hello!
If I understand your task correctly, here is the article that may be helpful to you — How to Vlookup and return multiple values in Excel
Hi :)
I have a unbalanced panel data set I want to sort.
How can I code excel to look in a column match with a condition, and then take the sum of the values which also meets the same condition?
The goal is to get the mean of my parameter for each country for each year in the panel data set. So I only have the parameter in years for each country.
I was thinking that some of the functions here could be usefull, but I cant quite figure out how to combine them to get the wanted result.
Hello!
If you want to find the sum of values by condition, then use the SUMIFS function.
If you need to find the average value by condition, then you need the AVERAGEIF function.
I have two sheets. In the first sheet I miss a date, which can be found in the second sheet. The rows (in the second sheet) in which these dates can be found is also a unique ID. These ID numbers are also present in the rows in the first sheet which requires the dates.
I would like to define a formula that takes the dates from the second sheet and prints it in the right cell in the first sheet. The date is placed correct if the ID in the first and second sheet match.
How can I use 'IF' and 'VLOOKUP' to define such a formula?
Hello!
You need to take the ID from the first sheet and look for it on the second sheet. When the ID is found, write the date from the corresponding line of the second sheet to the first sheet.
I cannot give you a more accurate advice, since you did not describe your data.
Please have a look at this article — INDEX & MATCH in Excel - better alternative to VLOOKUP.
I have a data in which The team mapping from 1st-24th was different and then from 25th the team mapping has changed how can I use the If with Vlookup
is there a way to show vlookup result in series? vlookup always show first value
for example:
order number 1 has to 2 order item1 apple item 2 is orange item3 is banana
order # | item
1 apple
1 apple
1 apple
instead of:
order # | item
1 apple
1 orange
1 banana
please help me on this
thanks!
Hello!
Here is the article that may be helpful to you: How to VLOOKUP multiple values in Excel with one or more criteria
I'm trying to match information from two sheets (First Name, Last Name & DOB), but also need the formula to pull data from 3 separate columns if a match is found (Date, Action, Customer ID).
Sheet 1 only has First Name, Last Name & DOB.
Sheet 2 has First Name, Last Name & DOB + a specific date, an action (Add or Delete) and a customer ID.
Can this be done with IF+VLOOKUP?
Thanks!
Hello!
Here is the article that may be helpful to you: Excel VLOOKUP with multiple conditions
I hope my advice will help you solve your task.
Hoping for your best formula by understanding what I want the outcome is.
My situation is like this. In cell H4 and I4 is the Basic Pay on an employee separated whether the basic is MWE or not, so only one cell will only have the data needed. In cell AD4 is the EE share for PHIC here in Philippines. In cell AR4 should be the ER share (this is where I want my formula to work on).
In another sheet 'Formula Source'!B2:E5 is my table range where my vlookup should return the value in index 3 (or in any value in Cell D2 to D5). But the value in D2 is a fix amount of P300 and in D3:D5 is only a percentage rate given with a compensation range in B2:B5.
My formula goes like this: =IF(OR(SUM($H4:$I4)>'Formula Source'!$B$3,$AD4>0),(SUM($H4:$I4)*VLOOKUP(SUM($H4:$I4),'Formula Source'!$B$3:$E$5,3,TRUE)),VLOOKUP(SUM($H4:$I4),'Formula Source'!$B$2:$E$2,3,TRUE))
Well, this gave me a result but even those who are zeros in AD4 (column AD) still have values where this should also be zero.
Hoping for your better analysis. Thank you.
Hello!
It is very difficult to understand a formula that contains unique references to your workbook worksheets.
I don't know anything about how salaries are calculated in the Philippines. Therefore, your abbreviations MWE, PHIC, ER do not tell me anything.
Describe your problem more easily.
Compensation range is actually in B2:C5
Please help here to find a match value, which formula should I use to get it. Example below.
In Column A I have a value and on that basis I need to find a match with reference to the Multiple column like, if you find a match for column A from column B give me a value if not find in Column B look in column C and if not column C look in column D and give me a value.
Which formula should I use here. Thanks.
Hello!
If I understood the problem correctly, you will find the answer in the previous comment.
I have a worksheet with two tabs. My first tab (A) is my results page and I usually use a vlookup to match identifiers from Tab A to Tab B that then finds associated data for the identifier. (eg: (VLOOKUP(B4,'INFO_201801-201812'!G:H,2,FALSE) That is usually fine, as the data I need is always in a specific place on my Tab B. However, I have found an issue with my original data and the identifer in Tab B can be found in one of two different columns. (eg: F:H or G:H) Can i combined two vlookup formulas into one IF statement so that, if the data I need is not found in the first column (F) on Tab B it will check the second column (G)?
Hello!
Pay attention to the following paragraph of the article above — ISNA VLOOKUP.
Try something like this.
=IF(ISNA(VLOOKUP(F1,Sheet1!$A$2:$C$10,3,FALSE)), VLOOKUP(F1,Sheet2!$A$2:$C$10,3,FALSE), "Not found")
Modify the links according to your details.
I am looking for a formulas that I am guessing is some sort of IF and VLOOKUP combination.
I have a Main excel sheet that will hold all "donations" made: Name, contact info and a column of each department a donation was made to.
Each Department has it's own column and its own sheets, so I would like Names and contact Infor & amount donated shared with that departments sheet, if there is an amount in the main sheets column.
So IF Column4 has $ammount in Row1, Then Name, address, phone #, email, and $amount in Row1 is shared with the corresponding Sheet for Column4.
Hello!
Unfortunately, without seeing your data it is impossible to give you advice.
I'm sorry, it is not very clear what result you want to get. Could you please describe your task in more detail and send us a small sample workbook with the source data and expected result to support@ablebits.com? Please shorten your tables to 10-20 rows/columns and include the link to your blog comment.
We'll look into your task and try to help.
Hi,
I have an other problem (I think).
I do a VLookup. But if the cell of the requested Output is empty, I want to get the next value (lookup the next row in the range that equals the Lookup match.
So I am have question and I am not sure if it can be done with excel.
I have 3 columns, I am comparing the data from columns A and B using VLOOKUP
to express the results on column C, I get the result of N/A for the values missing from
A and B. Is there a way instead of showing 'N/A' to show the values from column A
so I know exactly which values are not present in Column B? I don't want to see 'No ,Yes, True or False'
Hello!
You can learn more about fixing #N/A error in VLOOKUP formulas in Excel in this article on our blog.
I hope I answered your question. If something is still unclear, please feel free to ask.
Hi! I hope you can help me on this situation. I need a formula that can part our sales.
Scenario:
Sales is $100 . This must be automatically parted to 80% and 20% in a particular sales territory.
Hello Alexander ,
Thank you Alexander for help !
I fond one new formula on the internet and I think is more simple to use for my scope:
=LEFT(A1;18)=''01234-23456-234556''
where A1 is the cell with ''01234-23456-234556-ABCD'' and ''18'' is the number of caracters counted from LEFT SIDE
Hello!
You didn't say anything about the fact that the number of characters in your text is always the same. My formula works with any number of characters. Your formula only works when the number of characters is 18.
It is a pity that you did not mention this. I would have spent much less time answering.
I want to have an if function which returns the value of the next cell if the value is zero
Hi,
If I understand your task correctly, the following formula should work for you:
=IF(A2=0,INDIRECT(ADDRESS(ROW(A2)+1,COLUMN(A2))),A2)
Data on file i am bouncing to has a Y or null, and then there is the possibility of #n/a error. i'd like the result of my vlookup as follows:
if Y, then Yes
if null, then No
if not found (#N/A), then null
Hi,
If I understand your task correctly, the following formula should work for you:
IFERROR(IF(VLOOKUP(…) = "Y", "Yes", "No"),"Null")
You can learn more about IFERROR with VLOOKUP in Excel in this article on our blog.
I am trying to bring back column C based on the match in column A and the amount in column B. What would the formula look like?
HS amount .375 = column c?
Column A Column B Column C
HS .420 Default
HS .390 DSM
HS .375 RSM
AP .400 Default
AP .350 DSM
AP .300 EXEC
Hello!
If I understand your task correctly, check out the following article on our blog, it’ll be sure to help you with your task: Vlookup multiple matches based on multiple conditions.
I hope my advice will help you solve your task.
Hello ,
I need some support from you.
For one excel document I need to separate numbers from text in two separates columns.
In my case ,01234-23456-234556-ABCD and I want to separte only 01234-23456-234556 in one column and ABCD in other column and to keep this format.I tried to use the function .I tried to use the Excel function ''Text to Columns'' but it was not working fine for my case.
Thank you.
Best regards,
Silviu
Hello!
The formula below will do the trick for you:
=LEFT(A1,SEARCH("#",SUBSTITUTE(A1,"-","#", LEN(A1)-LEN(SUBSTITUTE(A1,"-",""))))-1)
and
=MID(A1,SEARCH("#",SUBSTITUTE(A1,"-","#", LEN(A1)-LEN(SUBSTITUTE(A1,"-",""))))+1,50)
I hope my advice will help you solve your task.
Hello,
I have a questions, below is the scenario in excel. I keep getting inconsistencies in my formulas
Cell A14=John, B14= Smith, C14=123-456-7890, D14=jsmith@gmail.com, E14=SE, F14=Appointment or Pending
If cell F14=Appointment then cell G14= the name in cell A14. But if cell F14=Pending then cell G14= blank or false.
How do I write this in excel? Can you please help?
Hello!
If I understand your task correctly, the following formula should work for you:
=IF(F14="Appointment",A14,IF(F14="Pending","","No"))
Hope this is what you need.
IF A2 IS A BLANK CELL AND I WANT TO VLOOKUP IT UP AND BRING A VALUE IN THAT CELL, WHATS THE FORMULA?
I have three columns for Aluminum pieces.
Column A is the shape: Square, angle, circle, etc.
Column B is the size of the shape: 2"x2", 3" x3", 2"x3", etc. Column B is a drop down with Data Validation that only pulls sizes based on the shape in Column A.
Column C is the weight of the shape per foot. I currently have a V-Lookup for this, but it is pulling based on the size of the shape. My problem is, I need it to pull based on the shape, and the size, not just the size. This is because you might have a 3" x 3" angle, or a 3" x 3" square, and the weights are vastly different.
I'm thinking I need some sort of IF and Vlookup, but I can't quite figure it out. Any help from y'all experts would be much appreciated.
how to use if and vlookup formula for getting number- if negative then zero and if positive then same number?
Hi, how can I combine vlookup, if, isblank, and ifna?
I have if the result is found in vlookup then it should be “OK”, but if it is N/A it should be “ADD TO LIST”. I also want to include a formula wherein if the cell is blank it will have “ENTER DATA”. These all can be in one formula? Thanks!
Hello!
If I got you right, the formula below will help you with your task:
=IF(ISBLANK(E1),"ENTER DATA",IFERROR(IF(VLOOKUP(E1,$A$2:$B$10,2,FALSE)"","Yes"),"ADD TO LIST"))
I hope it’ll be helpful.
Dear Svetlana,
if I have a entry, with start date of 01.01.2018 and the age range b/w 0-60 with elapsed year as 2 then I want the result to be S1 and similarly if I have the start date of 01.01.2019 with age range of 0-70 and elapsed year as 2 I want the result as S3, below is the problem table and the desired result I want request you to suggest me a formulae that can help me get the desired result.
Age elapsed years start date desired result
0-60 2 01.01.2018 S1
0-70 1 01.01.2018 S2
0-70 2 01.01.2019 S3
Hello ,
Why when I used the function IF with VLOOKUP ,some returns are correct some are not correct.The return in my case is ''TRUE ''even the the item is not present in the second sheet?I dont understand where is the problem?What is wrong?
=IF(ISNA(VLOOKUP(C6;Sheet4!$C:$C;FALSE));"FALSE";"TRUE")
Also the combination from below has the same issue ,is working but not 100% accurate
=ISNUMBER(MATCH(C6;Sheet3!$D$3:$I$12;0))
In my opinion should be very easy to be used, both are not working as expected.
Is there any issue related to the cell formating?
Please help with this issue.
Thank you in advance.
Silviu
Hello!
Unfortunately, without seeing your data it is difficult to give you any advice.
VLOOKUP does not find the data it needs. There may be extra spaces or non-printable characters in your text. This often happens when importing data from another program. The numbers can differ by some sign after the decimal point, which is not visible on the screen. This often happens when numbers are calculated with a formula and are not entered by hand.
I have two documents. One document contains errors and errorcodes. If the errorcode = N43 then I want the errordate, case number, and error description to populate in my other document. However, I only get #N/A in my formula results.
Please help
Hello!
I’m sorry but your task is not entirely clear to me. For me to be able to help you better, please describe your task in more detail. Please specify what you were trying to find, what formula you used and what problem or error occurred. Give an example of the source data and the expected result.
It’ll help me understand it better and find a solution for you.
The project is for cases that get sent to a client. When there is an error for the case loading into the client's system we get an error (errorcode = N43). I need to track the date that each case errored. The error date, error code, case number, and several other columns of data is in one sheet. I am trying to create a 'front page' that will only pull the case, error date, and error code when the errorcode = N43. I tried this formula: =IF('[06 2020 ANG Medicare Rejects.xlsx]Combined'!W2="N43",'[06 2020 ANG Medicare Rejects.xlsx]Combined'!C2, " ") but it does not have the vlookup.
This is an IF/VLOOKUP formula that I have tried but only get #N/A as a result. =IF(VLOOKUP("N43",'[06 2020 ANG Medicare Rejects.xlsx]Combined'!$A$1:$W$65536,3,FALSE),'[06 2020 ANG Medicare Rejects.xlsx]Combined'!$E$2,0)
Hello!
It is very difficult to understand a formula that contains unique references to your workbook worksheets. For the same reason, I cannot check her work.
Write down the formula as it is, without links to other files. Give an example of the source data. Write what result you want to get from this data.
Please describe your problem in more detail. It’ll help me understand it better and find a solution for you.
Hello,
how I can use this formula when I want leave the current value
if the cell is empty so it will write a value
but if it's not empty ignore it
Hello!
Please specify what you were trying to find, what formula you used and what problem or error occurred. Include an example of the source data and the result you want to get. It’ll help me understand the problem you faced better and help you.
I have 2 sheets
1st sheet include some columns (A,B ,and C), one of the column (C) I'm using a vlookup to retrieve values from sheet #2
daily I update the sheet #2 and it should to update also the column (C) in sheet #1
ie. rows # 2,4 have a values - I don't want to lose these values - but rows # 3,5 is empty
I need to use if statement with vlookup to update row # 3,5 and any other empty value in C column and ignore the other rows 2,4 because it has a values already
Hello!
Unfortunately, without seeing your data it hard to give you advice.
A formula can only change the value of the cell in which it is located. If a value is written in a cell, then you can change it either manually or with a VBA macro.
Read how to VLOOKUP across multiple sheets in Excel here.
Hi,
Really impressed. I had one question.
What should be the formula if in given example, like I had one seller i.e. Olivia with more than one products in sales and I want to pick one specific product's figure.
Looking for a prompt response.
Hello!
I think the "How to VLOOKUP multiple values in Excel with one or more criteria" guide will answer your question. Read here.
You saved my day thank you especially replacing NA part.
Hello,
I have two Sheets. I want to match three columns from sheet1 to sheet2 and when it finds/ not finds all values then it will return yes/no. how to do it?
Hi, I'm trying to utilize a vlookup first, and if the value is not in the list I want to apply an IF statement. I'm trying with the below formula but it's returning #Value!. Any ideas? Here's my Vlook formula which works =VLOOKUP(A11,'For Reference'!A:B,2,0) and here's my IF statement which works =IF(C11="F4","Critical",IF(C11="F3","Significant",IF(C11="F2","Important"))) but I can't seem to merge the two. I've tried several variations of =(VLOOKUP(B11,'For Reference'!A:B,2,(IF(C11="F4","Critical",IF(C11="F3","Significant",IF(C11="F2","Important")*0)*0))))
Any help is greatly appreciated!!
Dear all help me to out this problem.
I have one sheet where 2 collumn A & B.
Under Collumn Name(A) 4 data like A1=Name, A2=Ram,A3=Ram and A4=Ram
Under Collumn Salary (B) 4 Data Like B1=Salary,B2=(Blank),B3=(Blank),B4=5000
I want formula which give me Data of B4=5000
Formula Start Sarch the data from top and when get Blank then scanpe and give rusult after blank like B4 Value 5000.
alway scape blank and give return data after Blank
I'm here just to say thank you, it really helped me.
Hello!,
I have an excel file, where on one sheet there are some employee names and data related to whether they are in the office or not. on the other sheet I have employee names only. Names on both the sheets are same. I just want to have a field on second sheet, where i can have same information related to whether the employee is in the office or not?
what function should i use?
Thanks in advance!!
Hello!
I recommend reading this VLOOKUP instruction manual.
Hi,
Have a nice day.I have a problem in excel.I made a automated worksheet monthly, there i apply some of formula.I sumif my unique product and i needed here remarks but daily worksheet contains multiple times blank cell and sometimes remarks like as compensation.In this situation how i can use if and v-lookup combined formula to get that remarks.
Hello!
I’m sorry but your task is not entirely clear to me.
Please describe your problem in more detail. How exactly are your comments recorded? how is the text in the cells? Where are these cells located? Where are the empty cells? Include an example of the source data and the result you want to get. It’ll help me understand your request better and find a solution for you. Thank you.
Hi there,
I have one file wherein Column A and B are filed with some data. Now I have 2nd file wherein there are two cells with data as per file One.
Now I want a formula to check and give result as Yes or No if the data in both the cells in 2nd file are filled as per data from File one.
TIA
Hello!
I think the article on searching VLOOKUP for multiple criteria will help you. Read here.
I hope this will help, otherwise please do not hesitate to contact me anytime.
i have required formula for below example
Month item code Required remark from formula
jan 1 exsting
jan 2 exsting
jan 3 exsting
jan 4 exsting
jan 5 exsting
jan 6 exsting
Feb 7 New for Feb
Feb 8 New for Feb
Feb 9 New for Feb
Feb 1 exsting
Feb 2 exsting
Feb 10 New for Feb
Feb 4 exsting
Hi,
Meanwhile I have also tried the below formula, and an Alert popped up reading "You've entered too few arguments for this function."
=IFERROR(IF(OR($I$16="Grimaldi Lines"),VLOOKUP(C20,Mapping_Product,8,FALSE),IF(OR($I$16="Normal Shipment"),VLOOKUP(C20,Mapping_Product,7,FALSE)," ")))
Appreciate your kind help.
Dear Svetlana,
I am currently using the below formula that works perfectly well. However, I need to eliminate #N/A in my empty cells.
=IF(OR($I$16="Grimaldi Lines"),VLOOKUP(C20,Mapping_Product,8,FALSE),IF(OR($I$16="Normal Shipment"),VLOOKUP(C20,Mapping_Product,7,FALSE)," "))
Whilst thanking you for anticipated kind and prompt attention, I look forward to hear from you.
Hi,
I Need to check 2 texts in 2 different columns, if both are in same row, then i want the row number. What would be the formula for that case?
Hello Giridhar!
If I understand your task correctly, please try the following formula:
=IF(A1=B1,ROW(),"")
I hope it’ll be helpful.