Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Know only fields not empty in current record
Message
 
 
À
09/07/2002 06:02:26
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00676504
Message ID:
00676538
Vues:
13
This message has been marked as the solution to the initial question of the thread.
You can itterate thru all fields in the rercord using FIELD() function.
SELECT mytable
FOR i=1 TO FCOUNT()
  IF EMPTY(EVAL(FILED(I)))
     ? FIELD(i)
  ENDIF
ENDFOR
>Hi
>
>I have the following program , to know fields numerics in one record that have the value that i call as parameter .
>Ex: Do Function1 WITH 12 && return all numeric fields = 12 in current record
>
>Now , i want know all fields not empty in current record , I don´t want see fields empty in current record .
>Can you help me , to change the following function ?
>Thanks
>
< snip >
--sb--
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform