![]() |
Formula for the LESSER of 2 Calculations
I'm trying to create a formula that produces the following description:
IF Q31 is blank (no entry at all), Enter the same as Q30 IF Q31 is not blank and = (greater than or equal to) Q30, Enter the same as Q30 IF Q31 is not blank and < (less than) Q30, Enter the same as Q31 The formula in Q31 is "=IF(Q850,Q85,"")". I've inserted an extra column thinking I might have to put part of what I need to do in a hidden column cell; I don't know. Can someone please provide me guidance??? Or better yet, the actual formula I need to enter into Q32? Thank you, in advance, for your time and effort. -- Bonnie |
Answer: Formula for the LESSER of 2 Calculations
Hi Bonnie,
To achieve the desired result, you can use the MIN function in Excel. Here's the formula you can use in cell Q32: Code:
=IF(Q31="",Q30,MIN(Q30,Q31))
You don't need to use an extra column for this. Simply enter the formula in cell Q32 and it will give you the result you need. |
Formula for the LESSER of 2 Calculations
=if(Q31="",Q30,MIN(Q30,Q31))
"Bonnie" wrote: I'm trying to create a formula that produces the following description: IF Q31 is blank (no entry at all), Enter the same as Q30 IF Q31 is not blank and = (greater than or equal to) Q30, Enter the same as Q30 IF Q31 is not blank and < (less than) Q30, Enter the same as Q31 The formula in Q31 is "=IF(Q850,Q85,"")". I've inserted an extra column thinking I might have to put part of what I need to do in a hidden column cell; I don't know. Can someone please provide me guidance??? Or better yet, the actual formula I need to enter into Q32? Thank you, in advance, for your time and effort. -- Bonnie |
Formula for the LESSER of 2 Calculations
I believe the following returns the results you've requested:
=IF(OR(TRIM(Q31)="",Q31=Q30),Q30,Q31) -- Kevin Backmann "Bonnie" wrote: I'm trying to create a formula that produces the following description: IF Q31 is blank (no entry at all), Enter the same as Q30 IF Q31 is not blank and = (greater than or equal to) Q30, Enter the same as Q30 IF Q31 is not blank and < (less than) Q30, Enter the same as Q31 The formula in Q31 is "=IF(Q850,Q85,"")". I've inserted an extra column thinking I might have to put part of what I need to do in a hidden column cell; I don't know. Can someone please provide me guidance??? Or better yet, the actual formula I need to enter into Q32? Thank you, in advance, for your time and effort. -- Bonnie |
Formula for the LESSER of 2 Calculations
Thank you! I've used two sets of example figures and it appears it's working.
-- Bonnie "Kevin B" wrote: I believe the following returns the results you've requested: =IF(OR(TRIM(Q31)="",Q31=Q30),Q30,Q31) -- Kevin Backmann "Bonnie" wrote: I'm trying to create a formula that produces the following description: IF Q31 is blank (no entry at all), Enter the same as Q30 IF Q31 is not blank and = (greater than or equal to) Q30, Enter the same as Q30 IF Q31 is not blank and < (less than) Q30, Enter the same as Q31 The formula in Q31 is "=IF(Q850,Q85,"")". I've inserted an extra column thinking I might have to put part of what I need to do in a hidden column cell; I don't know. Can someone please provide me guidance??? Or better yet, the actual formula I need to enter into Q32? Thank you, in advance, for your time and effort. -- Bonnie |
Formula for the LESSER of 2 Calculations
Did you not get my earlier reply to your email then, Bonnie?
Pete On Jun 13, 8:16*pm, Bonnie wrote: I'm trying to create a formula that produces the following description: IF Q31 is blank (no entry at all), Enter the same as Q30 IF Q31 is not blank and = (greater than or equal to) Q30, Enter the same as Q30 IF Q31 is not blank and < (less than) Q30, Enter the same as Q31 The formula in Q31 is "=IF(Q850,Q85,"")". I've inserted an extra column thinking I might have to put part of what I need to do in a hidden column cell; I don't know. Can someone please provide me guidance??? *Or better yet, the actual formula I need to enter into Q32? *Thank you, in advance, for your time and effort. |
All times are GMT +1. The time now is 10:14 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com