Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Good Afternoon.
Can anyone tell me how to write a formula that puts 'N.A.' in a cell if the number in the previous cell is less than $500,000. If the value in the previous cell $500,000. or more then calculate 1% . -- Thanks! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(C8="","",IF(C8<500000,"N.A.",C8*0.01))
-- kassie never stop learning "Renee''" wrote in message ... Good Afternoon. Can anyone tell me how to write a formula that puts 'N.A.' in a cell if the number in the previous cell is less than $500,000. If the value in the previous cell $500,000. or more then calculate 1% . -- Thanks! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Maybe this:
=IF(A1<500000,"N.A.", A1*.01) "Renee''" wrote in message ... Good Afternoon. Can anyone tell me how to write a formula that puts 'N.A.' in a cell if the number in the previous cell is less than $500,000. If the value in the previous cell $500,000. or more then calculate 1% . -- Thanks! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
hi,
=if(a2<500000,"N.A.",a2*1%) hth -- regards from Brazil Thanks in advance for your feedback. Marcelo "Renee''" escreveu: Good Afternoon. Can anyone tell me how to write a formula that puts 'N.A.' in a cell if the number in the previous cell is less than $500,000. If the value in the previous cell $500,000. or more then calculate 1% . -- Thanks! |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(A1<500,000,"N/A",A1*.01)
Assumes "previous cell" is A1. Modify to suit your needs. Dave -- Brevity is the soul of wit. "Renee''" wrote: Good Afternoon. Can anyone tell me how to write a formula that puts 'N.A.' in a cell if the number in the previous cell is less than $500,000. If the value in the previous cell $500,000. or more then calculate 1% . -- Thanks! |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(A1<500000,N/A, A1*1%)
or =IF(A1<500000,"N.A", A1*1%) where A1 is the cell with the value to be tested - you can change the address to match you needs. best wishes -- Bernard V Liengme www.stfx.ca/people/bliengme remove caps from email "Renee''" wrote in message ... Good Afternoon. Can anyone tell me how to write a formula that puts 'N.A.' in a cell if the number in the previous cell is less than $500,000. If the value in the previous cell $500,000. or more then calculate 1% . -- Thanks! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to change column letters to correct ones in many formulas automatically? | Links and Linking in Excel | |||
how can i get formulas in excel to copy and paste? | Excel Worksheet Functions | |||
How to make Excel run limited number of formulas on a given worksh | Excel Discussion (Misc queries) | |||
Way to make Excel only run certain formulas on a worksheet? | Excel Discussion (Misc queries) | |||
calculating formulas for all workbooks in a folder | Excel Worksheet Functions |