Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

using if statements in Qlikview

Hi,

I try running the following script in SQL and it works fine.  I run it in QlikView and I don't receive any results or errors.  Any help appreciated.


if(at_fault='f',1,0) as AtFaultReturn#

1 Solution

Accepted Solutions
sasiparupudi1
Master III
Master III

try cast function to change it into a boolean value recognised by qlikview(1 or 0)

SQL SELECT

    FieldOfficer.first_name ||' '||

    FieldOfficer.surname as "Field Officer",

    signed_on as "Date Training Contract Signed",

    ss.name as Status,

    tc.id as id,

    received_on,

    tyims_employerid,

    AccountManager.first_name ||' '||

    AccountManager.surname as "Account Manager",

    tc.bdl_referred_by_id,

    last_kpi_action_date as "Status Date of change",

    employer_id as "Employer ID",

    appgivenname ||' '||

    appsurname as "Client Full Name",

    tc.created_at as "Created Date",

    BDLRefferedBy.id,

    tc.signup_status_id,

  tc.received_at ,

  tc.field_officer_id ,

  tc.account_manager_id ,

  tc.tier ,

  tc.employment_type_id ,

  tc.contract_type_id ,

  tc.finalised_on ,

  tc.approved_on ,

cast(  tcr.at_fault as int) as  at_fault


the above function works in sqlserver..if your db is something else, may be you need to adjust the syntax..


if this works then you can directly use at_fault as AtFaultReturn# in qlikview


hth

Sasi

View solution in original post

12 Replies
robert_mika
Master III
Master III

Works for me.

Could you share your data/app?

Capture.PNG

Digvijay_Singh

Is it possible for you to share complete load script? the independent statement looks ok to me.

Anonymous
Not applicable
Author

Hi Mika,

Facts:

LOAD as SUPIdentificationNumber,

as SUPClientName,

date(,'DD/MM/YYYY') as SUPDateOfCommencement,

date( ,'DD/MM/YYYY') as %DateKey,

date(,'DD/MM/YYYY') as SUPDateOfCreation,

as SUPClientDoB,

as SUPEmployerLegalName,

as SUPEmployerTradingName,

rtrim(ltrim(field_officer_id)) as FactConsultant,

AutoNumber(rtrim(ltrim())) as %ConsultantKey,

date(,'DD/MM/YYYY') as SUPNTCReceivedDate,

as SUPRTOName,

signup_status_id as SUPStatus,

date(,'DD/MM/YYYY') as SUPStatusDateChange,

rtrim(ltrim()) as SUPAccountManager,

as SUPEmployerTYIMSID,

as SUPBDLReferredBY,

bdl_referred_by_id,

at_fault,

1 as SUP#,

if(isnull(), 0, 1) as SUPBDLLead#,

if(='Not BDL Lead',1,0) as SUPNotBDLLead#,

If(signup_status_id='Sign Up Complete',1,0) as SUPComplete#,

If(signup_status_id='Received',1,0) as SUPReceived#,

if(signup_status_id='4',1,0) as SUPReturn#,

if(at_fault='f',1,0) as AtFaultReturn#

;

SQL SELECT

FieldOfficer.first_name ||' '||

FieldOfficer.surname as "Field Officer",

signed_on as "Date Training Contract Signed",

ss.name as Status,

commencementdate,

appdateofbirth,

employerlegalname,

employertradingname,

tc.id as id,

received_on,

tyims_employerid,

AccountManager.first_name ||' '||

AccountManager.surname as "Account Manager",

BDLRefferedBy.first_name ||' '||

BDLRefferedBy.surname as "BDL Referred By",

tc.bdl_referred_by_id,

last_kpi_action_date as "Status Date of change",

employer_id as "Employer ID",

appgivenname ||' '||

appsurname as "Client Full Name",

rtoname as "Name of RTO",

rtoname as "RTO Name",

rtocode as "RTO NTIS CODE",

heard_about_us_id as "Where Hear",

tc.created_at as "Created Date",

BDLRefferedBy.id,

tc.signup_status_id,

tc.received_at ,

tc.field_officer_id ,

tc.account_manager_id ,

tc.tier ,

tc.employment_type_id ,

tc.contract_type_id ,

tc.finalised_on ,

tc.approved_on ,

tc.training_plan_signed_on ,

tc.training_plan_received_on ,

tc.file_no,

tc.employee_id,

tc.last_kpi_action_date,

tcr.at_fault

from training_contracts tc

left join signup_statuses ss on tc.signup_status_id = ss.id

left join users FieldOfficer on FieldOfficer.id = tc.field_officer_id

Left join users AccountManager on AccountManager.id = tc.account_manager_id

left join users BDLRefferedBy on BDLRefferedBy.id = tc.bdl_referred_by_id

left join training_contract_returns tcr on tc.id = tcr.training_contract_id

where signed_on >= '2014-07-01';

Anonymous
Not applicable
Author

Facts:

LOAD [id] as SUPIdentificationNumber,

     [Client Full Name] as SUPClientName,

     date([commencementdate],'DD/MM/YYYY') as SUPDateOfCommencement,

     date([Date Training Contract Signed] ,'DD/MM/YYYY') as %DateKey,

     date([Created Date],'DD/MM/YYYY') as SUPDateOfCreation,

     rtrim(ltrim(field_officer_id)) as FactConsultant,

     AutoNumber(rtrim(ltrim([Field Officer]))) as %ConsultantKey,

     date([received_on],'DD/MM/YYYY') as SUPNTCReceivedDate,

     signup_status_id as SUPStatus,

     date([Status Date of change],'DD/MM/YYYY') as SUPStatusDateChange,

     rtrim(ltrim([Account Manager])) as SUPAccountManager,

     [BDL Referred By] as SUPBDLReferredBY,

     bdl_referred_by_id,

     at_fault,

     1 as SUP#,

     if(isnull([bdl_referred_by_id]), 0, 1) as SUPBDLLead#,

     if([BDL Referred By]='Not BDL Lead',1,0) as SUPNotBDLLead#,

     If(signup_status_id='Sign Up Complete',1,0) as SUPComplete#,

     If(signup_status_id='Received',1,0) as SUPReceived#,

     if(signup_status_id='4',1,0) as SUPReturn#,

     if(at_fault='f',1,0) as AtFaultReturn#

;

    

SQL SELECT

    FieldOfficer.first_name ||' '||

    FieldOfficer.surname as "Field Officer",

    signed_on as "Date Training Contract Signed",

    ss.name as Status,

    tc.id as id,

    received_on,

    tyims_employerid,

    AccountManager.first_name ||' '||

    AccountManager.surname as "Account Manager",

    tc.bdl_referred_by_id,

    last_kpi_action_date as "Status Date of change",

    employer_id as "Employer ID",

    appgivenname ||' '||

    appsurname as "Client Full Name",

    tc.created_at as "Created Date",

    BDLRefferedBy.id,

    tc.signup_status_id,

  tc.received_at ,

  tc.field_officer_id ,

  tc.account_manager_id ,

  tc.tier ,

  tc.employment_type_id ,

  tc.contract_type_id ,

  tc.finalised_on ,

  tc.approved_on ,

  tcr.at_fault

   

from training_contracts tc

left join signup_statuses ss on tc.signup_status_id = ss.id

left join users FieldOfficer on FieldOfficer.id = tc.field_officer_id

Left join users AccountManager on AccountManager.id = tc.account_manager_id

left join users BDLRefferedBy on BDLRefferedBy.id = tc.bdl_referred_by_id

left join training_contract_returns tcr on tc.id = tcr.training_contract_id

;

robert_mika
Master III
Master III

Is that the only fields that does not return any data?

Anonymous
Not applicable
Author

yes.  the others are all working

robert_mika
Master III
Master III

Are the any rows in your model where ='f' ?

Qlikview is case sensitive so maybe you should use 'F'?

Anonymous
Not applicable
Author

i checked the table and its definitely a small 'f'.

when picking up a field from SQL and then loading it should it be renamed?

i.e. the field is called training_contract_returns.at_fault in the database.  When loading into QlikView should i have renamed it?  for example "training_contract_returns.at_fault As returns".....and then use the returns in the load section?

jaimeaguilar
Partner - Specialist II
Partner - Specialist II

Hi,

you may first save your SQL query to a qvd and see how QV interpretes the 'f' character to make sure it is what you're expecting. Then you can apply any function you need,

regards