Ernesto_Paez
MIS
Hi Everyone
i have this select below
where as you can the "inactive" field is logical and course i am using this cursor result to be going to excel so i would like the column "Active" in excel, instead of being Y or N , to be Yes or No
is there a way to accomplish this ?
Thanks in advance
i have this select below
Code:
Select empno As Emp_Number, name As First_Name, Last As Last_Name, time_type As Time_Type, dept As Department ,;
IiF(salary=2, 'Yes','No') As Salary, IiF(inactive=.F., 'Y','N') As Active From empname Where Not Deleted() Into Cursor junkreport NOFILTER Order By 1
where as you can the "inactive" field is logical and course i am using this cursor result to be going to excel so i would like the column "Active" in excel, instead of being Y or N , to be Yes or No
is there a way to accomplish this ?
Thanks in advance