Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Hi everyone,

I'am just beginning to work with Qlik. And I have the following question. I'am trying to get the write information by connenting SAP to qlik. I want to few the orders that are technical completed with the following conditions:

1 Count order / weekly

2 Systemstatus = TECO (technical complete)

3 TotCostAct = < 0,01euro

the dimentions are:

1 Timestamp_loaded (weekly upload)

2 Order

3 Systemstatus

4 TotCostAct

Has anyone a sugestion?

=count({,System_Status=('TECO") .......?

thx for helping.

gr Patrick

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Count({<Systemstatus = {'TECO'},Systemstatus-={'REL'} TotCostAct = {'<0,01euro'}>}




using -=  is the same as saying doesn't equal. You can also do <>

Hope this helps

View solution in original post

7 Replies
Anil_Babu_Samineni

May be this?

Count({<Systemstatus = {'TECO'}, TotCostAct = {'<0,01euro'}>} [order / weekly])

Note: Make sure to use accordingly for TotConstAct

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable
Author

Anil,

It works for now thanks.

The formula used is Count({<Systemstatus = {'TECO'}, TotCostAct = {'<0,01euro'}>}

bud i have the following problem. I want to eliminate the Systemstatus REL?

Can u help me with this one?

gr Patrick

Anil_Babu_Samineni

Even thought When you use only for TECO it won't pick the REL. How you want to eliminate. Does it make sense?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable
Author

I'am trying to build a Indicator for our Teamleader. This way he can monitor the orders (maintenance orders) that are technically closed and maintain no hour or budget. This is a serious threath to our way of working. The upload is connected to SAP and generates more orders with diverent systemstatus.

Anonymous
Not applicable
Author

Count({<Systemstatus = {'TECO'},Systemstatus-={'REL'} TotCostAct = {'<0,01euro'}>}




using -=  is the same as saying doesn't equal. You can also do <>

Hope this helps

Anonymous
Not applicable
Author

Thx for the help.

Ive done it!

gr Patrick

Anonymous
Not applicable
Author

Excellent, glad to hear it!