Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Junior Member
 
Posts: 1
Default IF function problem,

I'm trying to calculate a maximum amount of value. That is, if a value is higher than 50000, it needs to display 50000. If not, display current value.

A1=35678
B1 should display 35678 (that is, equal to A1)

A1=67980
B1 should display 50000

Last edited by annae : September 13th 19 at 02:33 PM
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,872
Default IF function problem,

Hi,

Am Fri, 13 Sep 2019 14:23:26 +0100 schrieb annae:

I'm trying to calculate a maximum amount of value. That is, if a value
is higher than 50000, it needs to display 50000. If not, display current
value.

A1=35678
B1 should display 35678 (that is, equal to A1)

A1=67980
B1 should display 50000


try:
=MIN(A1,50000)


Regards
Claus B.
--
Windows10
Office 2016
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default IF function problem,

On Friday, September 13, 2019 at 4:49:08 PM UTC+3, annae wrote:
I'm trying to calculate a maximum amount of value. That is, if a value
is higher than 50000, it needs to display 50000. If not, display current
value.

A1=35678
B1 should display 35678 (that is, equal to A1)

A1=67980
B1 should display 50000




--
annae

Public Sub Answeer1()
' Prepared By Nasser Saadi (www.Nasser-Saadi.org)
' Date: 2019-Sep-19
' Address: Iraq (Or Arbil Or Irbil)
' ------------------------
Dim A1, B1 As Integer:
A1 = 23445
B1 = IIf(A1 = 50000, 50000, A1)
MsgBox " A1= " & A1 & " B1= " & B1 ' we can use one of display (Msgbox or Print)
Print " A1= " & A1 & " B1= " & B1 ' we can use one of display (Msgbox or Print)

End Sub
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default IF function problem,

On Friday, September 13, 2019 at 4:49:08 PM UTC+3, annae wrote:
I'm trying to calculate a maximum amount of value. That is, if a value
is higher than 50000, it needs to display 50000. If not, display current
value.

A1=35678
B1 should display 35678 (that is, equal to A1)

A1=67980
B1 should display 50000




--
annae


Public Sub Answeer1()
' Prepared By Nasser Saadi (www.Nasser-Saadi.org)
' Date: 2019-Sep-19
' Address: Iraq (Or Arbil Or Irbil)
' ------------------------
Dim A1, B1 As Integer:
A1 = 23445
B1 = IIf(A1 = 50000, 50000, A1)
' we can use one of display (Msgbox or Print)
MsgBox " A1= " & A1 & " B1= " & B1
Debug.Print " A1= " & A1 & " B1= " & B1


End Sub
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default IF function problem,

Nasser Saadi wrote:

On Friday, September 13, 2019 at 4:49:08 PM UTC+3, annae wrote:
I'm trying to calculate a maximum amount of value. That is, if a value
is higher than 50000, it needs to display 50000. If not, display current
value.

A1=35678
B1 should display 35678 (that is, equal to A1)

A1=67980
B1 should display 50000



B1 = IIf(A1 = 50000, 50000, A1)


Formula in B1: =if(A150000,50000,A1)

Just one "i" ;)

--
Vie : n.f. maladie mortelle sexuellement transmissible
Benoit chez lui ŕ leraillez.com
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Sum function problem Sue New Users to Excel 9 June 19th 09 02:46 PM
Problem with = in function Raj[_2_] Excel Worksheet Functions 4 April 20th 09 11:07 AM
Problem with Function sgreene Excel Worksheet Functions 12 April 17th 08 11:19 PM
Mid Function Problem DEI Excel Discussion (Misc queries) 3 August 9th 06 08:08 PM
PC to MAC VBA function problem cuboid Excel Programming 2 January 28th 05 05:09 PM


All times are GMT +1. The time now is 11:21 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"