Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How can I combinate two Formulas

Hello together,

i have a Problem with two Formulas, how can I combinate the two following Formulas:

1.

if (Währung <> 'EUR', EffektwertSumme*Kurs)

2.

SUM(IF(Kreditorabkürzung = '3', 0, [EffektivwertSumme]))

Do you have any solution, how I can combinate this to formulas.

Thank you.

Greets

Nikolaus80

1 Solution

Accepted Solutions
RedSky001
Partner - Creator III
Partner - Creator III

Depends what outcome you want, you've not provided enough informaton.  However as an exmaple you could do the following:

SUM(IF(Kreditorabkürzung = '3' ,0, if(Währung <> 'EUR' ,EffektwertSumme*Kurs,EffektwertSumme)))

View solution in original post

1 Reply
RedSky001
Partner - Creator III
Partner - Creator III

Depends what outcome you want, you've not provided enough informaton.  However as an exmaple you could do the following:

SUM(IF(Kreditorabkürzung = '3' ,0, if(Währung <> 'EUR' ,EffektwertSumme*Kurs,EffektwertSumme)))