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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

How to model this SQL Statement in PowerBI without using SQL?

Hi all

 

is it possible to model following SQL statement in PowerBI without using any SQL? The tables already exist in PowerBI.

I also want order_type and purch_date and customer_type to be used as slicers in PowerBI (red coloured sql statements).

Goal is to provide a customer list with aggregated sales values based on parameters of order_type, purch_date and cust_type. How would you solve it? What is best way to do it? 

 

select cust_id, cust_name, cust_address,
       nvl(purches,0) as no_of_purches
       nvl(amount,0) as purch_amount
  from customer_base_table c --one row per customer
       left join
       (

       select cust_id,
              count(distinct purch_id) as purches
              sum(amount) as amount
         from purchase_fact_table --zero or multiple rows per customer
        where order_type = 'xyz'
          and purch_date between '2018-10-12' and '2018-12-05'
        group by cust_id) f
    on c.cust_id = f.cust_id

 where c.cust_type = 'A';

 

Any help on this is kindly appreciated...

Regards, Simon

1 REPLY 1
Anonymous
Not applicable

Hi @Anonymous

 

Please upload sample data and the pbix file to OneDrive or Google Drive and share the link here. Please also provide the output expected.

 

 

Cheers

 

CheeenuSing

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.

Top Solution Authors