Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
manoranjan_d
Specialist
Specialist

table box

hi all

in the table BOX i want to display the field FOR  inactive user. how to do this in the table box and in the straight table?

example data

      

IDUSERNAMELASTNAMEFIRSTNAMENAMEACTIVE_INACTIVE
1AXXX1XXX1AA1ACTIVE
2BXXX2XXX2AA2INACTIVE
3CXXX3XXX3AA3ACTIVE
4AXXX4XXX4AA4INACTIVE
5BXXX5XXX5AA5ACTIVE
6CXXX6XXX6AA6INACTIVE
7AXXX7XXX7AA7ACTIVE
8BXXX8XXX8AA8INACTIVE
9CXXX9XXX9AA9ACTIVE
10AXXX10XXX10AA10INACTIVE
11BXXX11XXX11AA11ACTIVE

USE

9 Replies
sunny_talwar

field FOR? I don't see any column with header FOR? Can you elaborate on your requirement?

manoranjan_d
Specialist
Specialist
Author

its just for, typo error i need all the all fields to be displayed only for inactive

manoranjan_d
Specialist
Specialist
Author

sunny careply me waitig for your reply

hemanthaanichet
Creator III
Creator III

Hi Mano

in Straight table we can achieve it like below

only(ACTIVE_INACTIVE= 'INACTIVE')

Capture.PNG

In Table Box we can achieve it like below

Sample:

LOAD ID,

     UN,

     LN,

     FN,

     N,

     Act_Inact

FROM

(ooxml, embedded labels, table is Sheet1)

where Act_Inact = 'INACTIVE';

Capture1.PNG

Regards

hemanth

manoranjan_d
Specialist
Specialist
Author

where we have to give this condition ?

hemanthaanichet
Creator III
Creator III

Hi Mano,

Attached the qvw for  your reference

Regards,

Hemanth

manoranjan_d
Specialist
Specialist
Author

no while i loading in the script i need all the details but while displaing in the front end i need only the inactive user details

hemanthaanichet
Creator III
Creator III

Hi Mano,

what you are asking is not possible with table box. It can be achieve through straight table

attached qvw will give what your thought of requirement.

Regards

Hemanth

its_anandrjs

You can use the Trigger for this

Sheet Event Trigger to be used for the selection of the Inactive Users

Regards

Anand