Topic profile page for Integer.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: Integer.
Topic "Integer" was discussed 59,272 times on 1,737 sites in last 3 months
Started 1 day, 17 hours ago (2009-12-04 07:22:00)
by JerryG
I'm writing a nested IF statement in which one step needs to test the value of one cell divided by another cell, and determine if it is an integer before it completes the calculation. So, IF cell R10 / I13 = INTEGER, then I'll perform a Future Value calc. IF NOT = I want to do nothing. I tried ISEVEN, but when I turned ...
Started 2 days, 8 hours ago (2009-12-03 16:23:00)
by Jerryg
I'm writing a nested IF statement in which one step needs to test the value of one cell divided by another cell, and determine if it is an integer before it completes the calculation. So, IF cell R10 / I13 = INTEGER, then I'll perform a Future Value calc. IF NOT = I want to do nothing. I tried ISEVEN, but when I turned on the Analysis Took Pak nothing happened. My spreadsheet ...
Started 5 days, 16 hours ago (2009-11-30 08:07:00)
by Balfus
This is a plea to the dev team really.... Can the field for total gold acquired / total earned from auctions not be increased from the 4-byte signed (why signed???) integer? It would mean that we can actually see how much we have earnt rather than it overflowing into negative numbers after ~214k. I only hit 80 around 8 months ago and I've already had both fields it go all the way back around to...
Started 1 week, 1 day ago (2009-11-27 05:16:00)
by glyn6
I'm trying to return the value of a COUNT query as an integer can someone tell me what I'm doing wrong now? CODE CREATE PROCEDURE [dbo].[Countit] AS BEGIN SET NOCOUNT ON; SELECT COUNT(CompanyDetailID) as CountOfID FROM mainCompanyDetail WHERE Deleted = 0 return CountOfID END Thanks
Started 2 days, 10 hours ago (2009-12-03 14:00:00)
by teardrops203
Okay, I understand the idea of greatest integer functions. But I am having trouble finding the domain of greatest integer functions. For example, how would you find the domain of [x^2]? Thank you.
Started 1 week, 1 day ago (2009-11-28 00:02:00)
by KRAZY
Hello guys......I have a problem with my code, its more like I am stuck to continue further if I cannot find a way or an alternative. The problem is I have an integer X in a class called Langkawi, and I want the same integer to be present in another class called 'SA'. In this way, as int X changes in Langkawi class, changes will apply to int X in SA class as well. Just like the Paste ...
Started 3 days, 13 hours ago (2009-12-02 11:22:00)
by twisai
Hi all, I have an arraylist of strings List agList = new ArrayList(); agList.add( "hello); agList.add( "good" ); agList.add ( "bye" ); Can someone help me how to convert this into an integer array? Thanks very much
Started 1 week, 1 day ago (2009-11-27 06:48:00)
by masterdineen
[RESOLVED] Integer only in textbox Hello there Im just after a litte piece of code to make a text box only except 4 digits and only integers. can someone help please Regards Rob
Started 1 day, 7 hours ago (2009-12-04 17:38:00)
by ss7
Hi, I am working on a project and needed some help with this. I have currently created an array as part of my project in which stores numbers. the array runs from 0-28 and in each component is stored a value, so listed this may be something like.... 0, 1, 3, 2, 1 etc.... I need to know how would i sum together all these values? Any help as soon as possible would be appreciated. ...
Started 1 week, 1 day ago (2009-11-28 00:17:00)
by gmonreal
paste special error.. excell 2003 nubie hi!... i'm using following string to cut and paste from souce.... Code: Dim X As Integer For X = 28 To 34 Step 2 If X > = 30 Then Range("F" & X).Copy Range("F" & X - 25).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone End If Range("P" & X).Copy...
Started 5 days, 14 hours ago (2009-11-30 09:53:00)
by kevininstructor
I was wondering for those who are developing in VS2008 or higher are taking advantage of LINQ and language extensions not because they are something different but because they make development easier with consistency in coding and maintenance? Simple everyday example makes string to integer method based Code: _ _ Public Function ToInteger(ByVal value As String) As Integer...