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

Hi friends, How to do Less than in Set Analysis where a variable holds a value like this?

Hi,

I have the following ProductID values:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

I created a variable called vProductID

When I use it in Set Analysis it's like this:

=Sum({<ProductID={<=$(vMaxProductID)}>}LineSalesAmount)

But it gives me this error message:

Anybody know how I can get it to work please?

1 Solution

Accepted Solutions
Anonymous
Not applicable

try this

=Sum({<ProductID={'<=$(vMaxProductID)'}>}LineSalesAmount)

View solution in original post

2 Replies
Anonymous
Not applicable

try this

=Sum({<ProductID={'<=$(vMaxProductID)'}>}LineSalesAmount)

sunny_talwar

Try one of these two:

=Sum({<ProductID={'<=$(=vMaxProductID)'}>}LineSalesAmount)

or

=Sum({<ProductID={'<=$(=$(vMaxProductID))'}>}LineSalesAmount)