Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
codyraptor
Resolver I
Resolver I

Offset not showing value no rows

Here is my requirement:  I need to show the Gross of child 2 on the row of child 1.  See visual below....

 

Parent IDChild IDChild DateTypeGrossOffset GrossOffset Gross
111/1/2023norm$100$250 
121/5/2023xfer$250 $100

 

I've created an offset calculation against a summarized table and it seems to work.  I can see the value in the 'total', but the value will not show on the rows.  I assume because they're being hidden.  This is a STAR schema and Parent/Child/Date/Type are all different DIM tables.  Gross is calculated in the FACT table.  Any help is greatly appreciated.
This is my current measure:

CALCULATE(
        [gross],
        OFFSET(
        -1,SUMMARIZE(
        Fact,
        Fact[Parent ID],
        Fact[Child ID],
        Fact[Date]) ,
        orderby([Parent ID] ,ASC,[Date],ASC)
        ,,PARTITIONBY([Parent ID])
        )
1 REPLY 1
v-shex-msft
Community Support
Community Support

Hi @codyraptor ,

Can you please share a pbix or some dummy data that keep the raw data structure with expected results? It should help us clarify your scenario and test to coding formula.

How to Get Your Question Answered Quickly  

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors