Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a straight table and I want to show all the data where the name includes 'inv'
Is there a qlikview equivalent for 'like' in set analysis?
See attached qvw to see the effect of the three expressions in the pic below.
Hi!
Yes, there is! You can use wildcards in set analysis:
Sum( {<Product = {"inv*"}>} Sales)
Regards,
Jaime.
Yes you can. Try
Sum({<name= {"*inv*"}>}Amount)
If you want to take any selection of name into consideration as well you could use the following
Sum({<name *= {"*inv*"}>}Amount)
Hi Vegar,
I am not sure what the below function does
Sum({<name *= {"*inv*"}>}Amount)
Could you please explain the same
=Sum({< name *= {"*inv*"} >}Amount)
The expression will calculate the Amount for all [name] containing 'inv', but it does intersect with any selection you have done in the [name] field.
See attached qvw to see the effect of the three expressions in the pic below.
Very well Explained Thank you so much @Vegar