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: 
farolito20
Contributor III
Contributor III

Input field Problem

Help!

INPUTFIELD Budget;

LOAD WMR.Day,

           '1' as Budget

FROM WasteReport.qvd (qvd);

Error: duplicate keys when loading input field

1 Solution

Accepted Solutions
eddysanchez
Partner - Creator
Partner - Creator

You can't use inputfield if the other fields (WMR.Day) are not unique

You need for example add an ID in your load sentence

View solution in original post

2 Replies
eddysanchez
Partner - Creator
Partner - Creator

You can't use inputfield if the other fields (WMR.Day) are not unique

You need for example add an ID in your load sentence

farolito20
Contributor III
Contributor III
Author

I use a rowno().

Thanks!