Changes between Version 10 and Version 11 of UserGuidelines/Importer/Excel
- Timestamp:
- 03/20/20 20:34:08 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UserGuidelines/Importer/Excel
v10 v11 10 10 == Lookup Lists == 11 11 Simple L1s 12 - define a Named Range 13 - select the column 14 - deselect the header 15 - Data | Data Validation 16 - List | Source: 17 12 18 {{{ 13 19 =L1s 14 20 }}} 21 15 22 Prevent modifying the L1 again if the L2 has been selected 16 23 {{{ … … 27 34 }}} 28 35 Simple L3s based on L2 29 * ToDo: Multi-level lookups (Where L2s not Unique!)30 * @ToDo: Can we prevent changes if any Fokontany selected?36 * !ToDo: Multi-level lookups (Where L2s not Unique!) 37 * !ToDo: Can we prevent changes if any Fokontany selected? 31 38 {{{ 32 39 =OFFSET(L3_Start,MATCH(L2_Selected,L2s_for_L3,0),0,COUNTIF(L2s_for_L3,L2_Selected),1) 33 40 }}} 34 41 Simple L4s based on L3 35 * @ToDo: Multi-level lookups (Where L2s not Unique!)42 * !ToDo: Multi-level lookups (Where L2s not Unique!) 36 43 {{{ 37 44 =OFFSET(L4_Start,MATCH(L3_Selected,L3s_for_L4,0),0,COUNTIF(L3s_for_L4,L3_Selected),1)