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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
pradeep92
Partner - Creator II
Partner - Creator II

Comment Field

Hi,

Here is the sample code,

Transactions:

Load

TransLineID,

TransID,

mod(TransID,26)+1 as Num,

Pick(Ceil(3*Rand1),'A','B','C') as Dim1,

Pick(Ceil(6*Rand1),'a','b','c','d','e','f') as Dim2,

Pick(Ceil(3*Rand()),'X','Y','Z') as Dim3,

Round(1000*Rand()*Rand()*Rand1) as Expression1,

Round(  10*Rand()*Rand()*Rand1) as Expression2,

Round(Rand()*Rand1,0.00001) as Expression3;

Load

Rand() as Rand1,

IterNo() as TransLineID,

RecNo() as TransID

Autogenerate 1000

While Rand()<=0.5 or IterNo()=1;

Comment Field Dim1 With "This is a field comment";

What happens to the below mentioned line ? Why it is used ?

Comment Field Dim1 With "This is a field comment";

1 Solution

Accepted Solutions
woshua5550
Creator III
Creator III

It is nothing but a comment in order to let different developers know the meaning of the field , you can find it here

1.png

View solution in original post

3 Replies
Anil_Babu_Samineni

This used for understand of each comment for Data model level.

Qlikview Comment Tables WITH by Fields and Tables - YouTube

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
woshua5550
Creator III
Creator III

It is nothing but a comment in order to let different developers know the meaning of the field , you can find it here

1.png

pradeep92
Partner - Creator II
Partner - Creator II
Author

Thank you bro