please see attached sheet, there is only drop down texts appear for Client...
for others its blank drop down
PS: to declare in Name manager, i changed the name for Client Query/Activity
its not working, if i select client query/activity from column I then in column J drop down should come. If i select category other than client/query activity, column J should be blank i.e. no drop box. whereas in your given sheet Column K row 25 contain some formula which is not working. Is it possible to put formula in Column J ???
Gaurang
Ignore that K cell formula, it was me who was trying to get logic.
I cannot help you with regards to the query, sorry...As far as i know if we put data validation for a cell in dropbox form & it will stay irrespective of any, we can always change what it should show based on other cell value.
Lets see if any one can come up with better solution.
Good luck.
.xlsb-format enables Macros.
There are no formula in sheet for this.
There is one Macro which checks active cell's (I-column) position and value.
It deletes current row's J-column data validation and
if value is "Client Query/Activity" then it will make data validation to J-column.
@Ashhu
xlsb is binary format and has following advantages over .xlsx/.xlsm
1. Smaller file size. Especially noticeable when file is large.
2. Loading/Saving is much faster since it does not need to parse XML files.
3. Last but not least supports formulas above the 8192 character limit (not an issue in most instances)
Then there are disadvantages...
1. Excel 2003 and older does not support it
2. Many third-party software will not recognize xlsb format. You'll need to convert it to .xls, .xlsx or .csv format.
3. You can't edit Ribbon. You will need to convert it to xlsx or xlsm format first, make changes and then save as xlsb.
4. No way of telling before hand, whether the file contains macro or not.