Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
devarasu07
Master II
Master II

set limit to input field

Hi All,

Please refer to the attachment, Is there any way to set limit to input field column ?

below screen shot, refer the highlighted "Adjustment Sales" <100% (it should not allow user to enter more than 100%). do you have any suggestion on this? thanks in advance

Set limit.jpg

5 Replies
sunny_talwar

AFAIK this isn't possible, but I would be curious to see if I can be proven wrong

tamilarasu
Champion
Champion

Hi Devarasu,

You can simply show some warning message like attached screenshot. The textbox popup will appear and alert the user only when they enter Adjustment Sales more than 100%.

Capture.PNG

You can also use macro (triggered automatcially when the user enter more than 100%) and change the column value to "Exceeded" or even filter the lines automatically. But it is hard to maintain and slow when you have larger data. So I would suggest you to use textbox popup method since it is simple and easy to understand. See attached file for better understanding.

jayanttibhe
Creator III
Creator III

On top of it - can also change the text color to white if user value more than your specified number.

Like :=if(InputSum([Contribution%])>1,White())

Thanks

Jayant

tresesco
MVP
MVP

I am not sure if I understood right. May be you can play around with Constraints of the input box (properties) like in attached.

praveen_prithiviraj
Contributor III
Contributor III

Try this

if(InputSum([Contribution%])<100%,[Contribution%])

Kind Regards,
Praveen Kumar. P