Options

Number of records in a Table

sliewsliew Member Posts: 31
edited 2002-02-01 in Navision Financials
Hi,

I have a Navision database and I would to know how many records are there in a table.

- Navision 2.5
- I don't have CODBC


SL
<img border="0" title="" alt="" src="images/smiles/icon_sad.gif" />

Comments

  • Options
    Luc_VanDyckLuc_VanDyck Member, Moderator, Administrator Posts: 3,633
    Without coding:
    select File -> Database -> Information. Push button Tables and watch the screen.

    With coding:
    define variable:
    eg. recCustomer type Record Customer

    recCustomer.reset;
    if confirm(format(recCustomer.count)) then;
    No support using PM or e-mail - Please use this forum. BC TechDays 2024: 13 & 14 June 2024, Antwerp (Belgium)
  • Options
    sliewsliew Member Posts: 31
    Thanks
Sign In or Register to comment.