Forum Discussion
Vysh27
1 year agoNew Member
Redshift data and Power BI data are not matching up
Hi Everyone , I have been facing an issue with the data in power BI which comes from AWS redshift I'm validating the count of distinct guardians for a particular date with AWS redshift data. I have...
Vysh27
1 year agoNew Member
Here is the screenshot of the relationship and the aggregation
Anonymous
1 year agoNot applicable
Hi Vysh27 ,
Thanks for your reply. Please follow the steps below to get it:
1. Create a measure as below
Measure =
CALCULATE (
DISTINCTCOUNT ( 'final_phones'[guardian_id] ),
FILTER (
'final_phones',
'final_phones'[organization_id]
IN VALUES ( 'trs_organizations'[organization_id] )
)
)
2. Put the above measure to replace the aggregation function: Count of guardian_id. And check if it can return same count records with AWS Redshift...
Best Regards