Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi,
I work with SCD structured tables in dwh model. I want to create relation between two tables based on two column.
One of joins is date range join.
I've searched merging tables yet i have to design report in direct query mode. I couldn't manage to create these relation type.
pls note: i don't want to create calc. measure to achive date range relation.
Here is my data and my sql script;
SELECT
XX.StoreNo,
XX.StoreName,
XX.StoreGroup,
S.SalesDate,
S.StoreSales
FROM Store S
LEFT JOIN StoreSales XX
ON S.StoreNo = XX.StoreNo
AND S.SalesDate BETWEEN XX.BeginDate AND XX.EndDate
@rkapukaya , refer this video from guyinacube
https://www.youtube.com/watch?v=tKeaQpWynzg
i dont have surrogate key on my table. Just begindate and endate columns.
at video, table has srg key so it is easily to join with tables.
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.