Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

URGENT REGARDING INPUT FIELD

LOAD sales,

     year

FROM

(ooxml, embedded labels, table is Sheet1);

I HAVE LOADED A SCRIPT LIKE THIS AND THE OBJECTS ARE

SALES TABLE

500

600

Header 1

SALES

2000
3000
5000
6000

HERE IN FRONT END I WANT REPLACE THE VALUE INSTEAD OF 2000 NEED TO PLACE    1000 USING "INPUT FIELDS"  HOW?

PLS  HELP ME AND WHAT IS THE DIFFERENCE BETWEEN NORMAL FIELD AND INPUT  FIELD

1 Solution

Accepted Solutions
its_anandrjs

Hi,

Write some thing like this codes

INPUTFIELD Sales;

LOAD * INLINE [

    Key, Sales

    A, 2000

    B, 3000

    C, 5000

    D, 6000

];

Hope this helps

Thanks & Regards

View solution in original post

8 Replies
its_anandrjs

Hi,

Write some thing like this codes

INPUTFIELD Sales;

LOAD * INLINE [

    Key, Sales

    A, 2000

    B, 3000

    C, 5000

    D, 6000

];

Hope this helps

Thanks & Regards

its_anandrjs

Hi,


For your code it will be

INPUTFIELD sales;

LOAD sales,

     year

FROM

(ooxml, embedded labels, table is Sheet1);

Thanks & Regards

Not applicable
Author

THEN HOW TO CHANGE THE VALUE FOR     " A" 

its_anandrjs

Hi,

Plot List boxes of the fields and click on the cell whose value you want to change.

Thanks & Regards

Not applicable
Author

i did that but how to replace i am not getting option

its_anandrjs

Hi,

When you plot list box on application and when take your mouse cursor over Sales object you see small triangle -> then click on that and the cell is converted into text box then change the value

Hop this helps

Thanks & Regards

Not applicable
Author

great man thank you  all

its_anandrjs

Hi,

Mark this thread as correct so other can reference it.

Thanks & Regards