Showing posts with label Power BI. Show all posts
Showing posts with label Power BI. Show all posts

Thursday, May 12, 2022

Validate the row counts of PBI tables in Data Flows

Recently I had to validate the row counts of some existing tables in PBI Data Flows that I was converting over to a new source. So wanted to make sure the row counts matched between the current and new source systems.

A simple way to do this is to add a blank query and use the Table.FromRecords and Table.RowCount functions:

let
  Source = Table.FromRecords({
        [Table = "Table 1 Original", RowCount = Table.RowCount(#"Table 1 Original")],
        [Table = "Table 1 New", RowCount = Table.RowCount(#"Table 1 New")],
        [Table = "Table 2 Original", RowCount = Table.RowCount(#"Table 2 Original")],
        [Table = "Table 2 New", RowCount = Table.RowCount(#"Table 2 New")]
    }) 
in
  Source


Thursday, November 15, 2018

Power BI Resources

The following is a list of resources useful for Power BI training and product news:

Product News


Power BI Blog
https://powerbi.microsoft.com/en-us/blog/


Syntax and Language Reference

Dax Reference

Social Media Resources

Follow these resources on twitter:
Power BI @MSPowerBI 
Will Thompson @Will_MI77

Training and Other Resources

Youtube channels (for training and learning):


Legal Stuff: The contents of this blog is provided “as-is”. The information, opinions and views expressed are those of the author and do not necessarily state or reflect those of any other company with affiliation to the products discussed. This includes any URLs or Tools. The author does not accept any responsibility from the use of the information or tools mentioned within this blog, and recommends adequate evaluation against your own requirements to measure suitability.