Microsoft
Software
Hardware
Network
Question : Excel formula? (part 2)
I need to know how to create a formula to handle a condition in a single cell.
Currently I have: =IF(G3<=499,35,IF(G3>=500,
12,""))*G3
This is not quite right.
What I need to take into account is:
if G3 is greater than or equal to 500 = multiple the first 500 x 35, then multiply the remainder x 12.
How do I put this argument into a single cell?
Answer : Excel formula? (part 2)
Sorry.....attempt #3 -what I
meant
to post was
=IF(G3<500,G3*35,17500+1
2*(G3-500)
)
Random Solutions
Force Data Type on import - Access 2003
Creating a directory path string based on choices in a form
Change GUID in VStudio C++ OCX
System.NullReferenceExcept<wbr />ion Was Unhandled By User Code When Looping Through DataSet
could not load VFD.VXD
Input Boxes
Passing Parameters to Crystal Report Viewer - ASP.Net / C#.Net
Problems printing non-standard envelope size to HP with feeder.
New issue with report run counter not incrementing by 1
How do you tell visual studio to reindent all code so you can match up the "if/else" "while", and strucs like that