Soldato
Title is awful but in a nutshell. 1 view contains KBIDs, 2nd contains list of servers, server groups and KBIDs and when installed.
I'm trying to create view(3) which will return every KBID and server, showing the install date column where a row exists in the 2nd view and "NA" or somesuch where a row does not. Probably as clear as MUD
View1
View2
View3
Looks slightly mental when I view it like that!
TIA.
I'm trying to create view(3) which will return every KBID and server, showing the install date column where a row exists in the 2nd view and "NA" or somesuch where a row does not. Probably as clear as MUD
View1
Code:
KBID
KB1
KB2
KB3
KB4
KB5
Code:
Server ServerGroup KBID InstallDate
A A KB1 1/1/2010
B B KB2 1/1/2010
B B KB3 1/1/2020
C C KB5 1/1/2020
Code:
KBID Server ServerGroup InstallDate
KB1 A A 1/1/2020
KB1 B B NA
KB1 C C NA
KB2 A A NA
KB2 B B 1/1/2020
KB2 C C NA
KB3 A A NA
KB3 B B 1/1/2020
KB3 C C NA
KB4 A A NA
KB4 B B NA
KB4 C C NA
KB5 A A NA
KB5 B B NA
KB5 C C 1/1/2020
TIA.