Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi friends,
I have the model like this:
I would like count number of row of the table which contains:
I created this measure but it does not work out:
No_Of_Row=
COUNTROWS(
SUMMARIZE(
F_Sales,
D_Date[No Month],
D_Client[Client Name],
D_Customer[Customer]
,"Sales",SUM(F_Sales[Sales])
,"Target",SUM(F_Target[target])
))
Could anyone please help me to solve it?
Much appreciate your help.
Hi, @tracytran91
Although there are relationships between your model tables, the target and sales tables are not related, and the three dimension tables are not related, so your code can't be written like this...
@tracytran91 , Try a measure like
countrows(F_sales,D_date[Month], D_customer[Customer], C_Client[Client Name] ,"_1" , sum(f_sales[sales]), "_2", sum(F_target[target]))
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 60 | |
| 49 | |
| 30 | |
| 25 | |
| 23 |
| User | Count |
|---|---|
| 128 | |
| 102 | |
| 57 | |
| 39 | |
| 31 |