Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello i have attached an xls file with my question, to transfer a line in column.
Thanks for your help
Best regards
Alex
Hi Alex,
You can find attached your requested app.
I've added the script in text format in case you have personal edition.
Hi Alex,
You can find attached your requested app.
I've added the script in text format in case you have personal edition.
Thanks a lot Jp, it's workin fine and it's really fast to reload.
Are you from qlikview ? Have you participate to a special training session for this script ?
We 'd like with my collegue to participate to an advanced scripting session, but we can not find this kind of training. Best regards!
Alex
Hi again Alex,
Glad the solution worked fine.
As to your questions, i'm working in a company that partners with qlikview. So our job is to go at our client's site and implement the solution there.
As you can guess, clients requests build up a lot to your experience because they usually don't ask for something they can achieve themselves, so the harder their requests are, the more experience we gain.
Qlikview also offers on its website a number of trainings and demos that are very helpful.
And the very precious qlikview community , where you can practically find anything you want thanks to all the members that are willing to share their experience with everyone.
I personally didn't attend any advanced training and am relying on what i wrote above to constantly learn new stuff.
But maybe if you email qlikview team or check the training section on the website, you may find useful info in this matter (check for example under Services > Trainings > Training contacts).
Check also the different replies in this post, it'll surely prove useful: http://community.qlik.com/message/30752#30752
Good Luck !
Hello
Ok thanks a lot.
If you want to practise more i have another question here with an excel example:
http://community.qlik.com/message/239999#239999
thise one is not as easy as the one up here !
Best regards
Alex
Hello Jp,
I have a similar question where i want to convert column to row. For eg:
username group
test A,B,C
test 1 A,B,C
Convert to
username group
test A
test B
test C
test1 A
test1 B
test1 C
Hello,
You can do that by using the Subfield function:
table1:
LOAD username, SubField(group, ',') as group
FROM ...