Answer the question
In order to leave comments, you need to log in
How to check field value is numeric or character?
Please tell me how to check the received field value is numeric or character.
Type of the following code, the code not working, for an example resulted:
var
varVariablePole : String;
begin
varVariablePole := ExcelApp.Range['A'+IntToStr(varCounter)];
if not (varVariablePole in ['1'..'0']) then varP_visible := 0;
Answer the question
In order to leave comments, you need to log in
possible via
if Pos('.', varVariablePole ) > 0 then
ShowMessage('Point found')
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question