Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Setting a font

Hi-  I am wondering if it is possible to set the FONT of a specific field within the load script?

For example...

dCustomer (table):

LOAD

Customer Name

Phone Number

Address

....

Is there a way to make the "Customer Name" field load with a pre-defined FONT (different from the rest of the fields)?

Labels (1)
1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Nope, but you can 'construct' one: Pick(Ceil(6*Rand()),'a','b','c','d','e','f'). You could also try one of the hashXXX functions or perhaps field scramling.


talk is cheap, supply exceeds demand

View solution in original post

4 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

No, that's not possible. Nor can you set a font for a single specific field in a pivot chart, straight chart or table box.


talk is cheap, supply exceeds demand
Not applicable
Author

Thanks for the help.  Is there a function similar to the *rand() function that can be used for text fields?

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Nope, but you can 'construct' one: Pick(Ceil(6*Rand()),'a','b','c','d','e','f'). You could also try one of the hashXXX functions or perhaps field scramling.


talk is cheap, supply exceeds demand
Not applicable
Author

I was able to solve this problem using the hash128 funciton.  Thanks!