Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Table Auto Fill
Message
From
05/01/2006 13:02:43
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
 
 
To
05/01/2006 04:25:23
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Environment versions
Visual FoxPro:
VFP 6 SP5
OS:
Windows XP
Network:
Windows XP
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01083029
Message ID:
01083668
Views:
13
>>Dear Sir,
>>
>>Please send some details about following codes
>>
>>lnRecords = max(ceiling(reccount()/10),1)*10
>>
>>how does it work?
>>
>>Thanks
>MAX(a,b) ---> select the higher of two values
>CEILING(n) ---> round up to the next integer (2.1 becomes 3, an integer stays as is)
>RECCOUNT() ---> number of records in the table
>
>Assume 65 records in table.
>MAX(CEILING(RECCOUNT()/10),1)*10
>MAX(CEILING(65/10),1)*10
>MAX(CEILING(6.5),1)*10
>MAX(6,1)*10
>6*10
>so the expression evaluates to 60

Right. A slight typo correction:

MAX(CEILING(6.5),1)*10
MAX(7,1)*10
7*10

Cetin
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform