Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi guys,
I have 2 tables INVOICE and DATE
Date table =
ADDCOLUMNS(
calendar(min(INVOICE[INVOICE DATE]), EOMONTH(TODAY(),-1)),
"MonthNum", MONTH([Date]),
"Month", FORMAT([Date], "MMMM"),
"Year", YEAR([Date])
)
there is a relationship between INVOICE and DATE (* ...1) by the field 'INVOICE'[INVOICE DATE] and 'DATE'[Date]
for a unknow reason, [INVOICE DATE] can have value NULL. Let's admit it's possible.
I always used my 'Date' table in filters, formulas, etc
I have some question :
1) Do you think what I have done is correct ?
2) when I put the 'Date'[Date] in the page filter, why there is null value (VIDE) in the list. There is not null value in my date table
3)I made a table with the hierarchy of the date table and the 'INVOICE'[N° Invoice] to count the number distinct of invoice, there is 49673 for date = null
but when I checked in the data tab and I filtered 'INVOICE'[Invoice Date] = null, there is only 6469 line. There is a inconsistency
Can you tell me what I did wrong ?
Thank you
Hi @Anonymous ,
The following articles shows you how to remove blank from slicers:
https://www.c-sharpcorner.com/article/how-to-remove-blank-from-power-bi-slicer/
https://www.encorebusiness.com/blog/blank-value-in-the-power-bi-slicer-and-filter/
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , I think there are missing date, try like
ADDCOLUMNS(
calendar(min(INVOICE[INVOICE DATE]), EOMONTH(Max(INVOICE[INVOICE DATE]),0)),
"MonthNum", MONTH([Date]),
"Month", FORMAT([Date], "MMMM"),
"Year", YEAR([Date])
)
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 55 | |
| 35 | |
| 31 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 75 | |
| 72 | |
| 38 | |
| 35 | |
| 25 |