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

Pls help

Hi Viewers,

I have a situation on reading strings

I have a field called father's name now in front end I want count.

But its not reading properly

I tried with 'father's name' and

                "father's name" and

                 '(father's name)

and also need to use it in set analysis as well.

Any other suggestions ????

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Try like:

Dimension :

=ValueList('aadhar','pan','bank','father''s name')

expression :

Pick(Match(ValueList('aadhar','pan','bank','father''s name'),

'aadhar','pan','bank','father's name'),

Count(aadhar),Count(pan),Count(bank),count([father's name]))

Note: Red highlighted  quotes are two single quotes and not double quotes.

View solution in original post

7 Replies
karthiksrqv
Partner - Creator II
Partner - Creator II

Hi,

If you have fields that include a 'space', you'd have to use square brackets to refer to such fields.

[father's name]

Not applicable
Author

Yes I tried same thing before

Even though, Its not reading properly.

tresesco
MVP
MVP

Could you share your sample app or at least a screen shot ?

Anil_Babu_Samineni

May be this? [father's name]

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
avinashelite

Could you share the sample data and the desire output ? so that we could help you on the same

Not applicable
Author

Dimension:

=ValueList('aadhar','pan','bank','father's name')

expression :

Pick(Match(ValueList('aadhar','pan','bank','father's name'),

'aadhar','pan','bank','father's name'),

Count(aadhar),Count(pan),Count(bank),count(father's name))

This is am trying to do pls help

tresesco
MVP
MVP

Try like:

Dimension :

=ValueList('aadhar','pan','bank','father''s name')

expression :

Pick(Match(ValueList('aadhar','pan','bank','father''s name'),

'aadhar','pan','bank','father's name'),

Count(aadhar),Count(pan),Count(bank),count([father's name]))

Note: Red highlighted  quotes are two single quotes and not double quotes.