0
0
Power BIbi_tool~10 mins

Data gateway setup in Power BI - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table shows data sources connected through data gateways in Power BI, their connection status, and the gateway used.

CellValue
A1Data Source
B1Status
C1Gateway Name
A2SQL Server
B2Connected
C2Gateway01
A3Excel File
B3Disconnected
C3Gateway01
A4SharePoint
B4Connected
C4Gateway02
Formula Trace
IF(B2="Connected", "Data Ready", "Check Gateway")
Step 1: B2="Connected"
Step 2: IF(TRUE, "Data Ready", "Check Gateway")
Cell Reference Map
   A           B           C
1 Data Source  Status      Gateway Name
2 SQL Server  Connected   Gateway01
3 Excel File  Disconnected Gateway01
4 SharePoint  Connected   Gateway02
The formula references cell B2 to check the connection status of the SQL Server data source.
Result
   A           B           C           D
1 Data Source  Status      Gateway Name  Connection Check
2 SQL Server  Connected   Gateway01    Data Ready
3 Excel File  Disconnected Gateway01   
4 SharePoint  Connected   Gateway02    
The formula in column D checks if the data source in row 2 is connected. It shows 'Data Ready' because B2 is 'Connected'.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula check in cell B2?
AIf the data source is connected
BIf the gateway name is Gateway01
CIf the data source is SQL Server
DIf the status is Disconnected
Key Result
IF(condition, value_if_true, value_if_false) checks a condition and returns one of two values accordingly.