Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Insert following formula in PQ to count rows where #"Changed Type" should be replaced with your previous step
= Table.RowCount(Table.SelectRows(#"Changed Type", each [Date Created] > #date(2022, 5, 10)))See the working here - Open a blank query - Home - Advanced Editor - Remove everything from there and paste the below code to test
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMtU31jcyMDJSitUBcSyQOYYGKDwjZJ6RJYJnhmyGmb6hKYJnrm8I5cQCAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"Date Created" = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Date Created", type date}}),
#"Filtered Rows" = Table.RowCount(Table.SelectRows(#"Changed Type", each [Date Created] > #date(2022, 5, 10)))
in
#"Filtered Rows"If you are looking for DAX solution
Count of Rows = COUNTROWS(FILTER('Table','Table'[Date Created]>DATE(2022,5,10)))
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 |
|---|---|
| 6 | |
| 4 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 7 | |
| 7 | |
| 6 |