Google Spreadsheet get unique values from two different sheets -
thanks in advance help!
i have 2 tabs, events1 , events2, each of contain dates in column a. in tab, summary, have pulled following info:
[1] sorted list of unique dates events1 column a; extracted using formula =join("; ",unique(query(events1!$a$2:$a$125,"select not null order a")))
[2] sorted list of unique dates events2 column a; extracted using formula =join("; ",unique(query(events2!$a$2:$a$125,"select not null order a")))
now, trying figure out how is, in tab summary, pull:
[3] sorted list of unique dates both events1 column , events2 column a.
example events1 column a events2 column a
june 12, 2014 june 14, 2014
june 11, 2014 june 14, 2014
june 12, 2014 june 13, 2014
june 13, 2014
june 13, 2014
then [1] returns "6/11/2014; 6/12/2014; 6/13/2014" , [2] returns "6/13/2014; 6/14/2014". , [3] return "6/11/2014; 6/12/2014; 6/13/2014; 6/14/2014".
i hope explained properly. thanks!
tess
fyi solved using hidden sheet.
within hidden sheet created column put in top data cell:
=transpose(sort(split(join("; ",summary!b12,summary!b13),"; "),1,true))
and within summary sheet pulled info wanted this:
=join("; ",unique(query('hidden sheet'!$a$2:$a$250,"select not null order a")))
Comments
Post a Comment