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

Detecting Device

Hello, I have read that there is a function to detect what kind of device it's being used.

Which one is it and how does it work?

Thanks!

1 Solution

Accepted Solutions
ngulliver
Partner - Specialist III
Partner - Specialist III

Hi, Juan.

I used:

right(ClientPlatform( ),6)='mobile' to identify mobile device from a laptop/desktop although on reflection, using index instead of right might be better.

Regards,

Neil

View solution in original post

3 Replies
rustyfishbones
Master II
Master II

you can check help

type System Functions in the help menu

you can find

OSuser()

QVuser()

ComputerName()

create a text object on a sheet and add =OSuser() and do the same for the other options and check the results

ngulliver
Partner - Specialist III
Partner - Specialist III

Hi, Juan.

I used:

right(ClientPlatform( ),6)='mobile' to identify mobile device from a laptop/desktop although on reflection, using index instead of right might be better.

Regards,

Neil