Re: Weapons in AIMNAS (XML related question as well)[message #336541]
|
Fri, 10 October 2014 09:57
|
|
JMich |
|
Messages:546
Registered:January 2011 Location: Greece |
|
|
Open XML Editor and view all items. Then you have two ways to do it.
1) Right click on the columns, Select Columns, add ticks to BR Desc, BR New Inventory, BR Used Inventory. Then use the column headers to sort them.
2) Right click on the columns, Custom Filter, type (or paste) the following
szBRDesc LIKE '%not for sale%' OR (BR_NewInventory = 0 AND BR_UsedInventory = 0)
The LIKE operand means string starting with anything (%), has 'not for sale' in it, followed by anything. Feel free to replace 'not for sale' with any other string you want. The OR means either the first part must be true, or the second one (the one inside the parenthesis). The AND means both first and second part must be true.
The custom filter uses sql where options, using the column names, which you can see by hovering over the column header. Feel free to ask for more info.
Report message to a moderator
|
First Sergeant
|
|
|