IF is one of the most popular and useful functions in Excel. Generally, you use an IF statement to test a condition and to return one value if the condition is met, and another value if the condition is not met. Continue reading
by Svetlana Cheusheva, updated on
IF is one of the most popular and useful functions in Excel. Generally, you use an IF statement to test a condition and to return one value if the condition is met, and another value if the condition is not met. Continue reading
Comments page 13. Total comments: 4830
Hai Sir,
i need a formula for Marks to percentage,
if the percentage is below 1% mark is 5
if the percentage is 1% to 3% mark is 10
if the percentage above 3% to 5% mark is 15
if the percentage above 5% mark is 20....
Hello!
In this article you can find the answer to our question: Excel Nested IF statement: examples, best practices and alternatives.
Thank you sir,
I'm trying to come up with a formula that will input words, so if a number is below 30 it will say "within 30 days then if it's between 30-365 it will say "within 12 months and anything over 365 will be blank. so far I can do the first part but I'm not sure how to add another condition.
=IF(E6<30, "within 30 days")
Hello!
Please have a look at this article: Nested IF in Excel – formula with multiple conditions.
=IF(E6<30, "within 30 days",IF(E6<365, "within 12 months",""))
This should solve your task.
I want to make a formula that goes something like this
=if(value>blank(G3:L3 add 80 to M3)
Sorry I'm a real novice in excel. :-(
Hope somebody can help me out.
\Lars
Hello!
Please use the following formula:
=IF(SUM(--(G3:L3<>""))=0,M3+80,0)
or
=IF(SUM(--(G3:L3=""))=6,M3+80,0)
Hope this is what you need.
hi, i am trying to do a formula where the following occurs
if the balance is greater than 37500 (say 50,000) then the excess 12500 needs to be multiplied by 40% and the original 37500 needs to be multiplied by 20%
if its less than 37500 then only that balance needs to be multiplied by 20%
i have tried a few IF formulas but they only do part of the task
Hello!
If I got you right, the formula below will help you with your task:
=IF(A1>37500,(A1-37500)*40%+37500*20%,A1*20%)
How do i return a result to be good or bad from a list of numbers
Hi!
Describe in detail what problem you have, and I will try to help you.
HI,
can anyone help me to set a formula with data validate I have three conditions in my data validation list Present Absent and Paid Leave which is denoted With P, A, and PL, what I want when my leave balance is equal to zero and then I select PL then popup message appeared no leave balance
Hi!
You cannot get a popup message using the usual Excel formula. Need to use VBA macro
A B C D
TOTAY
346 INV-0354 30/06/2021 18901.52 =+IF(TODAY-B346>90<180,D346,0)
347 INV-0355 30/06/2021 1330.20
348 INV-0356 30/06/2021 2861.50
Please Help On This Function and suggest me correct formula
Hi!
You can learn more about IF statements with multiple AND/OR conditions in Excel in this article on our blog.
Also, make sure you use the TODAY function correctly.
=IF(AND(TODAY()-B346>90,TODAY()-B346<180),D346,0)
I am Trying to Use the Value(Text) in Cell E to determine the the condition in cell I to read (Pass, Fail) based on the Value(numerical) in field G. Example. IF E = Gram, Eight, Quarter, Half and G Numerical Value fits a given field then I = Pass or Fail. The Value in E will Determine if the Value in G is True. The True/Pass parameters for G will be Gram >=1.08 ,=3.7, =7.27, =14.16, <=14.4. As long as Cell G Falls Between these ranges for the appropriate value in Cell E then Cell I should show Pass. IF outside these then Fail.
Hi!
I’m sorry but your description doesn’t give me a complete understanding of your task.
But conditions >=1.08 ,=3.7, =7.27, =14.16, <=14.4 cannot be met at the same time. I recommend leaving two conditions: >=1.08, <=14.4
I want to write an if formula that if the cell has a number >0 to return a certain value, if the cell has text to return it as zero.
Example I have a time card Monday = 8 , Tuesday= FO, Wednesday = 8, Thursday =8, Friday = 8. I am trying to say everyday the person works they get an extra 2 minutes of pay. currently I have multiple if functions stating =if cell >0, 2,0 but the cell with the FO text is getting the true statement.
Hello!
To determine the content of a cell, you can use the ISNUMBER and ISTEXT functions.
=IF(ISTEXT(A1),0,2)
or
=IF(ISNUMBER(A1),2,0)
Hello,
i need a formula, that says: IF =H3-J3>0, and iF =H3-J3<0,121 (then it is ok),
but: IF =H3-J30,121 (then rise or lower the G3 cell so it can be in the parameters from 0 to 0,121).
If this is possible.
Something is wrong. So i will send the question in 2 parts.
1. part
i need a formula, that says: IF =H3-J3>0, and iF =H3-J3<0,121 (then it is ok).
2. part
but: IF =H3-J30,121 (then rise or lower the G3 cell so it can be in the parameters from 0 to 0,121).
again it is not good...grrr
i need a formula that if cell B3 is "A" then put the 5% in cell D3????????
Hi!
Formula in cell D3:
=IF(B3="A",5%,"")
Hello,
While creating a time sheet that will auto calculate an invoice amount I have tried the above, referencing the "IF formula to perform a math operation and return a result".
My data comes from a drop down list. I want the particular cell to say "ok, if this cell says "client A", then do this math formula in this other cell". The problem is, each of the names in my drop down list corresponds to a different percentage rate to multiply the payrate by in order to get the bill rate..make sense? So if the worker had x hours working for client A I want to be able to choose client A from the drop down list, manually enter the pay rate for that employee, and then have the sheet calculate the OT pay rate, regular bill rate, OT bill rate and total it all at the bottom to show what the invoice should be. I have all of the other work done, I just cannot seem to get past this part, and I wonder if I am trying to get Excel to do too much with too little. Please help.
Here is how I have entered the formula.
Client A Client B Client C pay rate
=IF(AND(OR('Dropdown Lists'!A30,'Dropdown Lists'!A34,'Dropdown Lists'!A50)), N17 + N17*45%)
Hello!
You can automatically find and insert the interest rate for the selected customer into a cell using the VLOOKUP function, as described in this article.
I hope this will help, otherwise please do not hesitate to contact me anytime.
Hello,
Is it possible to make a formula so that IF cell A is Province ( Ontario, Alberta, Yukon, Manitobia ....) then multiply cell B Number with cell C (2%,3%,9%.... ?
basically trying to calculate taxes depending on province.
Hello!
You can read recommendations on how to use a nested IF function in this article.
=IF(A1="Ontario",B1*2%,IF(A1="Alberta",B1*3%,""))
You can use the IFS function for multiple conditions:
=IFS(A1="Ontario",B1*2%,A1="Alberta",B1*3%)
If the province's list and percentages are in columns D and E, you can find the percentage you want using the VLOOKUP function:
=B1*VLOOKUP(A1,D1:E10,2,0)
I hope it’ll be helpful.
Hello,
Is it possible to use a formula that says if CO or CM then 8?
I'm keeping a score at work with my coworkers and how many days they've worked and how many days they've had pto (CO) or medical (CM). i need the formula to work for 30-31 entries per persona (the days of the month) and i need something when i put cm or co in the table to return 8 back as in hours not worked. is it possible? am i making any sense?
Oh. Forgot to mention. As i have 31 columns in a row, if there are more than 1 CO to sum them up. for example if i have 3 CO then the answer given should be 24. is it possible?
Hello!
Pay attention to the COUNTIF function. Please check out this article to learn how to count cells with multiple criteria (OR logic).
The result you get is multiplied by 8.
I hope it’ll be helpful.
Thank you so much! I managed to make it work. You're awesome!
Forecasting spreadsheet: There are start and end dates for each project. I want the corresponding dated cells to color fill based on if they fall between the start and end dates. If I change the date, I want it to automatically change the fill. No fill if outside of dates. Ex: Start 2/25/2021 End 8/30/2021. Cells dated 2/25/2021 to 8/30/2021 will be filled. If I change date, it will change fill.
=IF($K39="TBD",2,IF(AND($L39=AH$1),IF($G39="OH",1,5),0))
Hello!
You can find the examples and detailed instructions here: Excel conditional formatting for dates & time.
I'm trying to write a formula where if b4 is $14000 and is greater than c4 which is $10000 then the amount in c4 ($10000) needs to be displayed in d4. Could you please offer some assistance.
Thank you
Hi!
The formula for your conditions may look like this:
=IF(B4>14000,C4,"")
If B4> 14000, then B4 will always be greater than C4, where 10000 is written. Therefore, the second condition does not make sense.
You can learn more about IF function with multiple conditions in this article.
I want the formula such that value_if_false wouldn't affect other cells when I drag the formula dowwards
Hi!
Please have a look at this article: Relative and absolute cell reference: why use $ in Excel formula.
I hope it’ll be helpful.
Hi,
I need help in Excel cell. I want a result from 2 conditions. if the cell i type 5 the answer is 100 and if i type 10 the anwer is 300 on the same cell. how to do using IF or other formula?
Hello!
If I understand correctly, you want to write both the value and the formula in one cell. It's impossible. You need to use a VBA macro. If the formula and the value 5 or 10 are in different cells, use a nested IF function.
Is it possible to get substracted value with suffix/test.
to be precise,
i want to get the following,
10:00 PM-04:00 PM=06:00 hrs
after subtraction i get 06:00, but not with hrs. I want to get with hrs "suffix".
thanks
Hello!
Use custom time format:
[h] "hrs" mm "min" ss "sec"
I hope it’ll be helpful.
I want to do the following work with IF function,
If(A2=A-620,"Bose",""); can i do it.
here A-620 is Mr. Bose's ID number.
Hello!
Use quotation marks when comparing cell values to the text.
If(A2="A-620",”Bose”,””)
please help
if a2 is >1 check if the date on b2 is > date on a1 and return yes if all statements are true no if false
Hi!
The answer to your question in this article: Excel Nested IF statements.
How do I do something like an IF with a random test and one of the outputs is the same random like this:
=IF(random_number>0.5,same_random_number,0)
I hope you know what I'm saying cause I don't.
Hello!
Please check out this article to learn how to сreate random numbers with specified decimal places.
I hope it’ll be helpful.
Oh, wait I figured it out myself. Never mind.
Thanks anyway!
HI,
I want to make a formula in which the value of A1 is less than or equal to 10, A2 will show "1" but if A1 is greater than 10 say 12 for example the excess 2 will multiplied to 0.5 then A2 will be 10+(X*0.5)/A1
=IF(A1>=10,"10+0.5X"&FIXED(A1-10,0),1)
Hello!
Please check the formula below, it should work for you:
=IF(A1>10,10+FIXED(A1-10,0)*0.5,1)
Hi,
i need a formula to do the following calculations:
IF A2 and A3 are blank then to return blank but if there are values greater than zero to multiply A2*A3
Hi!
Please re-check the article above since it covers your case.
(auto result req)
Packing sr no no of box
D1 to D2 2
D3 to d5 3
D5 to D9 4
as per above example i want auto sum in excel for packing sr no
Hello!
If I understand correctly, you need to calculate the amount according to the condition. Here is the article that may be helpful to you: How to use SUMIF function in Excel to conditionally sum cells.
I need help with the below given formula. It has two sells to chose from. Cell AE5 is a date. The output required is taht if the date in AE% is lower than today then output cell should read "Note Due", However if the other cell that is AF5 is blank then output required is "Not Received" and if it is not blance the the output required is "Received"
If the date criteia is satisfied then i do not want further output of "Not Received" or "Received"
=IF(AND(AE5<TODAY(),"Not Due"),IF(AND(ISBLANK(AF5)),"Not Received","Received"))
Requesting to please help.
Hello!
If my understanding is correct, you can use this formula:
=IF(AE5<TODAY(),"Not Due",IF(ISBLANK(AF5),"Not Received","Received"))
Dear Mr. Trifuntov,
Thank you for your revert. You have made it amazingly simple. Sincerely appreciate. It fits well and resolves my query with exception to scenerio under option 4. The final formula i am using is:
=IF(AE5>TODAY(),"Not Due",IF(ISBLANK(AF5),"Not Received","Received"))
In the outputs below Amount is AD5 , Date due on is AE5, Received on is AF5 and output cell is the column marked Status that is AG5. Under option 4 we receive the amount before the due date. We wanted to give a preference that if the amount is received before due date then output should show "Received" instead of showing "Not Due". Would it be possible to incorporate such preference in the formula.
Output 1
Amount Date Status
Due On Received On
200,000 27-10-21 Not Received
Output 2
Amount Date Status
Due On Received On
200,000 27-10-21 28-10-21 Received
Output 3
Amount Date Status
Due On Received On
200,000 30-11-21 Not Due
Output 4
Amount Date Status
Due On Received On
200,000 30-11-21 29-10-21 Not Due
Hi!
Add one more condition to your formula as described in this article: Excel Nested IF statements.
=IF(AF5
Hi, i am trying to create an IF function that when you have typed "DONE", the exact date when the word was typed will be reflected on another cell. Whilst when "ONGOING" is typed, the date shown will be the date today, and will still continue only until the word DONE is typed. Thanks for the help.
Hi!
Excel functions can only change values in the cell with which they are written.
Hi,
URGENT
I am in urgent need to a formula to help me update a current file with new COGS and RRP pricing.
But not all articles under a certain category need to be updated. So if I filtered original file to a specific category and did a VLOOKUP, will any data on not filtered rows change also if row numbers are not in running order and skips rows?
Basically, I only want to update some articles with new data and retain existing data for those articles not on new data file.
Thanking you.
Chris
Hi!
Excel filter does not affect formula execution.
Perhaps you should use VLOOKUP formula with IF condition.
what if I want to use VLOOKUP but the value is a specific word in the cell
I mean the formula have to find text first and then make it value
Hi!
Your issue is not clear. Explain in more detail.
Hi, I am tracking 'aging overdue invoices', and I am creating an IF statement formula where it finds the total per days outstanding. My database output provides the days outstanding and many ROWS I get the text "NULL". All overdue days list correctly on second column with current formula. How can I insert the TEXT "NULL" on "column B" Aging Bucket when "Column A" reads NULL?
Here is my current formula inserted on "Column "Aging Bucket" ROW "B2":
=IF(A2>90,"91-120 Days Past Due ",IF(A2>60,"61-90 Days Past Due",IF(A2>15,"16-30 Days Past due",IF(A2>-0.1,"0-15 Days Past Due","0 Current"))))
My current data output:
Column A
Days_Overdue
NULL
NULL
280
19
Column B
Aging Bucket
181-365+ Days Past Due
181-365+ Days Past Due
181-365+ Days Past Due
0-30 Current
Hello!
A NULL error occurs when the ranges you specify do not overlap. You can replace the error with any value, including the text "NULL", using the IFERROR function.
Hi
Please could someone help me I am trying to create the following
EX:
If M2 is less or equal to 0.01-0.99 return the text in cell N2 "0"
EX:
iF M2 is less 12 return the N2 "12" and above 12, 13 14 is return N2 12,13,14.
Hi!
Please check out the following article on our blog, it’ll be sure to help you with your task: Excel IF statement with multiple AND/OR conditions.
hi, i'd like to ask more about this
How should I type if the value is between 1-200, it types 40%;
201-300 type 15%;
301-600 type 10%;
601-900 type 5%
Thank you
Hi!
I recommend reading the article about nested IF statements. Hope this is what you need.
Hi,
I'm trying to find the right function to give me the following.
For any price that is a full number, give me back 'reg price', ex. 5.00
for any price ending with .98, give me back 'mkdn price', ex. 4.98.
Can anyone help?
Thanks,
Alison
Hello!
I don't understand what you want to do. Give an example of source data and desired result.
Hello,
I'm using an IF function so that if the ranking in table A is either 9, 10 or 11, we shall output the performance from another corresponding, yet separate table of data and leave blank if otherwise.
The formula looks like:
=IF(P166=9,AP166,"")&IF(P166=10,AP166,"")&IF(P166=11,AP166,"")
This has worked to the point where the correct corresponding performance data has been outputted, however, these are in decimal format and it will not allow me to change these to a percentage format (despite allowing me to select the 'percentage option', nothing changes). Furthermore, I cannot alter the number of decimal points that the newly outputted data is displayed to.
As the data is essentially the same, I thought this might not be too big of an issue. However, when I go to find the average of the 3 outputted performances, I get the error message:
#DIV/0!
Upon further digging, I found that when I go to simply sum up the three outputs, It gives me zero (when this shouldn't be the case).
It's almost as if the IF function output isn't being recognised by excel despite being visible (and correct) on my screen.
Any help is greatly appreciated, thanks!
Hi, I'm trying to use an IF function with an email address.
Example: =If(J3=123,name@domain.com,IF(j3=4567,anothername@domain.com,0))
I've tried using " " around the email addresses, but nothing works.
Thanks,
Hello!
Always use quotation marks for text expressions. I don’t know what kind of result you wanted to get. If you wanted to get the email address as a hyperlink, then use the HYPERLINK function.
Hello,
I am unsure if this is possible though any assistance is appreciated.
I have cell B2 with the value 4 (YVL)
I am trying to write a formula that says IF(B2<10&" (YVL)","over","shift").
Is this possible?
Thank you in advance
Hi!
Use IF AND statement to check two conditions:
=IF(AND(--LEFT(A1,SEARCH(" ",A1,1))<10,MID(A1,SEARCH("(",A1)+1,3)="YVL"),"over","shift")
Hello gain,
Please ignore the above question. I tried a IF(COUNT(FIND formula and it seems to have worked.
cheers,
Hi, thank you for share all of functions above. This helped me a lot, ^^.
Hi guys, i need help with something. I checked this text and cant find out if something like i need can be done in excel or not...
For example, i have 12 values in dropdown menu in a cell (data validation) and i would like if i can set up something that when i change value from dropdown menu, excel can input predefined text (2 options only) in predetermined field.
For example, if i select P-3340 from dropdown menu, i would like for excel to change cell below into From well.
Can something like that be done? I actually dont need eny calculations, just that when i select something from dropdown menu, it changes next cell or two. I do a lot of repetitive reports and this would save a ton of time.
Hi!
The drop-down list writes the selected value from this list to the cell.
You cannot solve your problem using standard Excel tools.
I'm trying to writ and IF statement that compares 2 cells with dates in them.
IF( F4= A$1,B$1,M3)
A1=a date pulled in via a VLOOKUP formula and is dynamic
F4=09/15/2021
F5=F4+1
F6=F5+1
ect.
I tried the following:
=IF(DATEVALUE(F4)=DATEVALUE(A$1),B$1,M3)
But I got an Error, any suggestions?
Hello!
The DATEVALUE function only works with dates that are written as text. You do have not a text in the F4 cell, but the date.
Try formula
=IF(F4=A$1,B$1,M3)
Also tried =IF(DATEVALUE(9/15/2021)=DATEVALUE(E$4),K$4,L6)
Hi How about if example
if 150.00 if the zero cents it will choose the cell d2
if 150.50 then will choose the d4.
How will i do that?
Thank you
Hi!
To get the fractional part of a number, use the INT function:
=A1-INT(A1)
Use this formula in an IF function as described earlier in this article.
Hi, how do you program a cell to fill itself with "1" based on the given date range? I have all dates in one row and in the column I have employee names.
Hi!
I am not sure I fully understand what you mean. Give an example of your data and an example of the result you want to get.
hi,
the values in my cell are "<90", the if formal hasn't been picking up on this and is returning the second condition for all cases
Is there anyway to fix this?
Hi!
Explain your problem in detail.
Thank you very much
I've learnt a lot more here than in class
I was able to find what was needed then and there
Thank you once again
Good job, you all
Hi! I could use some help if anyone is available.
I have 2 sheets that contain the same column called "Content Title".
Sheet 2 has an additional column with data in it called "Total Unique Users". I want to bring over the data from Sheet 2 column "Total Unique Users" to Sheet 1 if I can find the same Content Title in Sheet 1.
For example, If Content Title in Sheet 1 is equal in Sheet 2, pull the data from the "Total Unique Users" column in Sheet 2 into Sheet 1.
Any help is appreciated. Thank you!
Hello!
You can find the examples and detailed instructions here: Vlookup from another sheet.
This should solve your task.
I have 2 columns of numbers , cOL C&D . I need Col A to represent a letter based on these criteria.
If C is greater than D then show text H else show A
I have =IF($C$3>$D$3,"H","A") this works OK but if the numbers match I need to show text D. How can I do this please..
Hello!
You can use this formula:
=IF(C3>D3,"H",IF(C3=D3,"D","A"))
You can learn more about nested IF statements in Excel in this article on our blog.
Thanks so much for your FAST solution - it works great.. in fact you are 'Alexander the great'.
Hi,
I'm trying to use formula in a budget where
C3 D3 ($eg) E3(monthly)
yearly $95000 = D3/12
monthly $500 = D3*1
weekly $50 = D3*4
Please assist with e3 cell formulas
Regards
Annette
Hello!
If I understand your task correctly, the following formula should work for you:
=IF(C3="yearly",D3/12,IF(C3="monthly",D3,IF(C3="weekly",D3*4,"")))
I want to write a statement in sheet named Master, that reads a cell in sheet named 2021 and if it says N, come back with NO. If it is blank, I want it to come back with a blank. If it is anything else, I want it to give me the value in another cell in sheet 2021. How do I do this? I have tried a bunch of different IF functions and everything comes back with an error.
Hello!
Use a formula like this:
=IF('2021'!B1="N","No",IF('2021'!B1="","",'2021'!B2))
You can learn more about nested IF in this article.
To everyone, I need help.
Column A1: John Doe
Column A2: Jim Doe
Column A3: James Doe
...
So, columns B should be:
Column B1: 12345
Column B2: 23456
Column B3: 34567
John is 12345, Jim is 23456, James is 34567.
How to make formula that puts their numbers when I put their names?
Working on setting up a asset inventory sheet using existing bar codes,
I can get the Barcode to scan insert Barcode number and insert scan date. But I also need it to search the spreadsheet for a matching barcode, and update the scanned date with the current date.
Present code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim x As Integer
For x = 2 To 1000
If Cells(x, 1).Value "" And Cells(x, 2).Value = "" Then
Cells(x, 2).Value = Date & " " & Time
Cells(x, 2).NumberFormat = "m/d/yyyy h:mm AM/PM"
End If
Next
Range("B:B").EntireColumn.AutoFit
End Sub
Would like to have it to where I scan in one Cell and have it search for exsisting data match or append @ the end of the rows.
=(IF(N191.4,N191.7,N192.4,"NORA"))))
Hello!
I would like to write a formula saying:
if N191.4 and N191.7 and N192.4 write NORA