A
an
Hello!
With:
TRANSFORM First(MyTable.Value) AS FirstOfValue
SELECT MyTable.Date
FROM MyTable
GROUP BY MyTable.Date
PIVOT MyTable.Param;
(Thanks JohnFol)
We get the result:
ParamA ParamB
Date1 Value1
Date2 Value2
(First value of both)
But I would like the next result:
ParamA ParamB
Date1 Value1 Value"x"
Date2 Value"y" Value2
because there are values in both parameters.
Thanks in advance.
an
With:
TRANSFORM First(MyTable.Value) AS FirstOfValue
SELECT MyTable.Date
FROM MyTable
GROUP BY MyTable.Date
PIVOT MyTable.Param;
(Thanks JohnFol)
We get the result:
ParamA ParamB
Date1 Value1
Date2 Value2
(First value of both)
But I would like the next result:
ParamA ParamB
Date1 Value1 Value"x"
Date2 Value"y" Value2
because there are values in both parameters.
Thanks in advance.
an