Changes between Version 12 and Version 13 of UserGuidelines/Importer/Excel
- Timestamp:
- 03/20/20 20:54:15 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UserGuidelines/Importer/Excel
v12 v13 7 7 8 8 Normally this is a hidden worksheet with a user-visible UI worksheet where data is entered & 1 or more lookup worksheets. 9 10 == Data Validation == 11 - Data | Data Validation 12 - Custom | Formula: 13 14 Email Address: 15 {{{ 16 =ISNUMBER(MATCH("*@*.?*",A2,0)) 17 }}} 9 18 10 19 == Lookup Lists == … … 27 36 Simple L2s based on a single L1 28 37 * NB Dependent Lists must be sorted by dependency 38 - L2_Start is the column header on the lookups sheet 39 - L1_Selected is the single field where L1 is selected 40 - L1s_for_L2 is the list of L1s to the left of the list of associated L2s 29 41 {{{ 30 42 =OFFSET(L2_Start,MATCH(L1_Selected,L1s_for_L2,0),0,COUNTIF(L1s_for_L2,L1_Selected),1)