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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
gshaikh
Regular Visitor

First count the distinct id then find the row count of that count column

Hello 

 

Please see below We need 4 as an output as oracle output has 4 rows of output Request you to please find below dummy data

 

Thank you so much for help

 

Data

Orderno OrderLineNumber Shippeddate ScheduleDate
1232 4 14-11-2022 20211113
2323 6 16-11-2022 20221115
2323 5 16-11-2022 20221115
2323 7 16-11-2022 20221115
2323 8 16-11-2022 20221115
6556 6 24-11-2022 20211113
4543 7 23-11-2022 20221115
4543 8 23-11-2022 20221115

Query in oracle


SELECT COUNT(ORDERNO) CNT,
SCHEDULEDATE,
ShippedDate
FROM TABLE1
GROUP BY ORDERNO,
SCHEDULEDATE,
ShippedDate

Output In Oracle


Cnt ScheduleDate Shippeddate
1 14-11-2022 20211113
4 16-11-2022 20221115
1 24-11-2022 20211113
2 23-11-2022 20221115

Power Bi Output


4 4 Should be output as above Oracle output has 4 rows

1 ACCEPTED SOLUTION
v-easonf-msft
Community Support
Community Support

Hi, @gshaikh 

You can new a summarized table and then count the rows of this summarized table:

Result2 = 
 var tab=SUMMARIZE (
    'Table',
    'Table'[Orderno],
    'Table'[ScheduleDate],
    'Table'[Shippeddate],
    "Cnt", COUNT ( 'Table'[Orderno] )
)
return COUNTROWS(tab)

Best Regards,
Community Support Team _ Eason

View solution in original post

2 REPLIES 2
gshaikh
Regular Visitor

Thank you so much for help its work for me Thanks again

v-easonf-msft
Community Support
Community Support

Hi, @gshaikh 

You can new a summarized table and then count the rows of this summarized table:

Result2 = 
 var tab=SUMMARIZE (
    'Table',
    'Table'[Orderno],
    'Table'[ScheduleDate],
    'Table'[Shippeddate],
    "Cnt", COUNT ( 'Table'[Orderno] )
)
return COUNTROWS(tab)

Best Regards,
Community Support Team _ Eason

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.