Search found 4 matches

by Purushottam
April 21st, 2013, 11:57 am
Forum: Entry
Topic: Fields with only Number and alphabet not special character
Replies: 4
Views: 6029

Re: Fields with only Number and alphabet not special charact

I want logic for Fields(Alpha) that accept only Number (0-9) and alphabet (A-Z) not special character Pl help Hi Purushottam Use simple logic proc VAR if not $ in "A":"Z", "0":"9" then Errmsg("Please enter correct charecter"); reenter; endif; This w...
by Purushottam
April 21st, 2013, 1:47 am
Forum: Entry
Topic: Fields with only Number and alphabet not special character
Replies: 4
Views: 6029

Fields with only Number and alphabet not special character

I want logic for Fields(Alpha) that accept only Number (0-9) and alphabet (A-Z) not special character

Pl help
by Purushottam
April 20th, 2013, 12:16 pm
Forum: Entry
Topic: Adding three field value and write in fourth fields
Replies: 5
Views: 6581

Re: Adding three field value and write in fourth fields

lls wrote:Hi,

Have you tried

Col5 = Col2 + col3 + col4
or
$ = Col2 + col3 + col4

?

thankx
by Purushottam
April 19th, 2013, 8:21 am
Forum: Entry
Topic: Adding three field value and write in fourth fields
Replies: 5
Views: 6581

Adding three field value and write in fourth fields

Sir I am working in data entry software for Economic Census 2012(Govt. of India). I want the logic for Protected Field for summing three fields value in fourth one which is protected. e.g fields Col2,col3,col4 and col5 is Protected Field Sum(Col2+col3+col4) this value should be in Col5 Pl help P S M...