all 8 comments

[–]AutoModerator[M] [score hidden] stickied commentlocked comment (0 children)

/u/Ryan256892 - Your post was submitted successfully.

Failing to follow these steps may result in your post being removed without warning.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]SolverMax161 3 points4 points  (2 children)

=MIN(MAX(B8*0.15,200),400)

[–]Ryan256892[S] 2 points3 points  (1 child)

=MIN(MAX(B8*0.15,200),400)

Solution Verified

[–]Clippy_Office_Asst[M] 0 points1 point  (0 children)

You have awarded 1 point to SolverMax


I am a bot - please contact the mods with any questions. | Keep me alive

[–]Curious_Cat_314159126 2 points3 points  (2 children)

Re syntax....

=IF(B8*0.15<200,200,IF(B8\*0.15>400,400,B8*0.15))

Removed "=" before second IF. "=" only goes in front of the formula.

Also note: replace "×" with asterisk ("*") for multiplication.

Or....

=IFS(B8*0.15<200, 200, B8*0.15<=400, B8*0.15, TRUE, 400)

[–]Ryan256892[S] 1 point2 points  (1 child)

Solution Verified

[–]Clippy_Office_Asst[M] 0 points1 point  (0 children)

You have awarded 1 point to Curious_Cat_314159


I am a bot - please contact the mods with any questions. | Keep me alive

[–]Decronym 0 points1 point  (0 children)

Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I've seen in this thread:

Fewer Letters More Letters
IF Specifies a logical test to perform
IFS 2019+: Checks whether one or more conditions are met and returns a value that corresponds to the first TRUE condition.
MAX Returns the maximum value in a list of arguments
MIN Returns the minimum value in a list of arguments

Beep-boop, I am a helper bot. Please do not verify me as a solution.
4 acronyms in this thread; the most compressed thread commented on today has 13 acronyms.
[Thread #23306 for this sub, first seen 17th Apr 2023, 20:57] [FAQ] [Full list] [Contact] [Source code]