Changes between Version 21 and Version 22 of UserGuidelines/Importer/Excel
- Timestamp:
- 05/17/21 19:30:11 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UserGuidelines/Importer/Excel
v21 v22 33 33 }}} 34 34 35 Prevent modifying the L1 again if the L2 has been selected36 {{{37 =IF(L2_Selected="", L1s, INDIRECT("FakeList"))38 }}}39 40 35 Simple L2s based on a single L1 41 36 * NB Dependent Lists must be sorted by dependency … … 46 41 =OFFSET(L2_Start,MATCH(L1_Selected,L1s_for_L2,0),0,COUNTIF(L1s_for_L2,L1_Selected),1) 47 42 }}} 48 With prevention49 {{{50 =IF(L3_Selected="", OFFSET(L2_Start,MATCH(L1_Selected,L1s_for_L2,0),0,COUNTIF(L1s_for_L2,L1_Selected),1), INDIRECT("FakeList"))51 }}}52 43 53 44 Simple L3s based on a single L2 54 45 * !ToDo: Multi-level lookups (Where L2s not Unique!) 55 * !ToDo: Can we prevent changes if any L4 selected?56 46 {{{ 57 47 =OFFSET(L3_Start,MATCH(L2_Selected,L2s_for_L3,0),0,COUNTIF(L2s_for_L3,L2_Selected),1) … … 65 55 66 56 Simple L4s based on a varying L3 in row 67 - same as above, set L3_Selected = UI$$C6 57 - same as above, set L3_Selected = UI$C6 58 59 To clear dependent entries when a Higher Lx is changed then can use the technique outlined here (although needs modification as we're not using tables): 60 * https://www.contextures.com/exceldatavaldependindextablesindirect.html#clear 61 * Full, modified, example: https://github.com/sahana/eden/raw/master/static/themes/CumbriaEAC/xls/Client_Registration.xlsm 68 62 == Multi-Select Dropdowns == 69 63 * http://www.contextures.com/excel-data-validation-multiple.html