Re: Can I export data from Power BI to SharePoint List?
Hi, KRider!
I want to take advantage of the development of this solution to ask what JSON editing would be like if the query in Power BI contains measures and one-to-many relationship tables. An example:
DEFINE
VAR SharepointExport =
FILTER(
DISTINCT(
SELECTCOLUMNS(
FactMeets,
"id", FactMeets[id_hash],
"source", RELATED('YLUR_metadata'[source]),
"chat date", RELATED('YLUR_metadata'[datetime_ini]),
"detection", [RiskDetection], //measure
"risk", [RiskCalc], //measure
"analyst", RELATED(DimAnalysts[Analyst])
)
),
[risk] >= 10 && [chat date] >= DATE(2024, 1, 1)
)
EVALUATE
SharepointExport
Is it possible to reference constructed table 'SharepointExport' and its columns in the JSON step?
Thank you!