thanks Geert, the import and export works for me, but I am missing an Initial Value field in the Excel.
I tried to add it to the configuration select, but then I receive Runtime error , when I press "Export"
select '' as Action,o.Object_Type AS CLASSTYPE, o.ea_guid AS CLASSGUID, o.ea_guid as ownerField, -1 as Pos,
o.Name, o.Stereotype, o.Note AS Notes_formatted,o.Alias, o.InitialValue, '' as Datatype, o.Multiplicity, o.Scope as Visibility,
tv1.Value as TAG_Tag1, tv2.Value as TAG_Tag2
from ((t_object o
left join t_objectproperties tv1 on (tv1.Object_ID = o.Object_ID
and tv1.Property = 'Tag1'))
left join t_objectproperties tv2 on (tv2.Object_ID = o.Object_ID
and tv2.Property = 'Tag1'))
where o.Package_ID in (#Branch#)
union all
select '' as Action, 'Attribute' as CLASSTYPE, a.ea_guid as CLASSGUID, o.ea_guid as ownerField,a.Pos as Pos,
a.name, a.Stereotype, a.Notes as Notes_Formatted, a.Style as Alias, a.Default as InitialValue, a.Type as Datatype, a.LowerBound & '..' & a.UpperBound as Multiplcity, a.Scope as Visibility,
tv1.Value as TAG_Tag1, tv2.Value as TAG_Tag2
from (((t_attribute a
inner join t_object o on o.Object_ID = a.Object_ID)
left join t_attributetag tv1 on (tv1.ElementID = a.ID
and tv1.Property = 'Tag1'))
left join t_attributetag tv2 on (tv2.ElementID = a.ID
and tv2.Property = 'Tag2'))
where o.Package_ID in (#Branch#)
order by ownerField, Pos, name