I with an Excell formula I cannot figure out.

  • Thread starter Thread starter tkav1980
  • Start date Start date
  • Tags Tags
    Figure Formula
AI Thread Summary
To set up the desired spreadsheet, the formula for cell E2 should be structured to evaluate the value in cell D2. If D2 is less than 4000, E2 should calculate 1% of D2; if D2 is 4000 or greater, E2 should calculate 2% of D2. The correct formula to use is =IF(D2<4000,D2*0.01,D2*0.02). This formula can be generated using Excel's built-in formula interface by selecting the "IF" function under the Logical category, where users can input the necessary arguments. This method simplifies the process for those who may not be familiar with creating complex formulas manually.
tkav1980
Messages
47
Reaction score
1
Im trying to set up a spread sheet for my chef but I am stuck.

Cell B2 = invoice total
Cell C2 = chemical total
Cell D2 = Sum(B2-C2)
Cell E2 needs to be...if cell d2 < 4000 then multiply by 1%, if 4000 or greater multiply by 2%.

Im very stuck on E2 and can't figure out how to make a formula work for this. IF anyone could help Id greatly appreciate it. I am not very good with excell, I can set up very basic formulas but this one has me stuck. Thank you in advance.
 
Computer science news on Phys.org
=IF(D2<4000,D2*0.01,D2*0.02)

=IF ( D2<4000 , D2*0.01 , D2*0.02 ) <-- with spaces added for readability

BTW, the Excel interface generated this for me; I just clicked on the Formulas page, clicked on Logical to indicate that I wanted logic functions such as "IF", and a popup window asked me for the arguments. I supplied the arguments, and it generated the text that got written into the cell.
 
Wow, Thanks! I was looking around in the formulas to see if I could find something. Thanks for the help!
 
Thread 'Urgent: Physically repair - or bypass - power button on Asus laptop'
Asus Vivobook S14 flip. The power button is wrecked. Unable to turn it on AT ALL. We can get into how and why it got wrecked later, but suffice to say a kitchen knife was involved: These buttons do want to NOT come off, not like other lappies, where they can snap in and out. And they sure don't go back on. So, in the absence of a longer-term solution that might involve a replacement, is there any way I can activate the power button, like with a paperclip or wire or something? It looks...
I came across a video regarding the use of AI/ML to work through complex datasets to determine complicated protein structures. It is a promising and beneficial use of AI/ML. AlphaFold - The Most Useful Thing AI Has Ever Done https://www.ebi.ac.uk/training/online/courses/alphafold/an-introductory-guide-to-its-strengths-and-limitations/what-is-alphafold/ https://en.wikipedia.org/wiki/AlphaFold https://deepmind.google/about/ Edit/update: The AlphaFold article in Nature John Jumper...
Back
Top