Power BI reference and how to links
This post is for all PB lovers. I tried to place some useful links which you may need to prepare and present reports in you dashboard. Hope below link will help you here.
Schedule Refresh
Dashboards don't refresh automatically - https://community.powerbi.com/t5/Service/Dashboards-don-t-refresh-automatically/m-p/91990/highlight/true#M15836
How to set your browser to refresh automatically - https://www.online-tech-tips.com/computer-tips/automatically-refresh-web-pages-in-browser/
Data refresh in Power BI: https://docs.microsoft.com/en-us/power-bi/refresh-data
What is Power BI gateway : https://docs.microsoft.com/en-us/power-bi/service-gateway-getting-started
Manage your data source - Oracle (add enterprise gateway) : https://docs.microsoft.com/en-us/power-bi/service-gateway-onprem-manage-oracle
Connect with SP List:
Schedule Refresh
Dashboards don't refresh automatically - https://community.powerbi.com/t5/Service/Dashboards-don-t-refresh-automatically/m-p/91990/highlight/true#M15836
How to set your browser to refresh automatically - https://www.online-tech-tips.com/computer-tips/automatically-refresh-web-pages-in-browser/
Data refresh in Power BI: https://docs.microsoft.com/en-us/power-bi/refresh-data
What is Power BI gateway : https://docs.microsoft.com/en-us/power-bi/service-gateway-getting-started
Manage your data source - Oracle (add enterprise gateway) : https://docs.microsoft.com/en-us/power-bi/service-gateway-onprem-manage-oracle
Connect with SP List:
- Take the SP Site url and choose the Get data >> Web or "online SharePoint list" (under Online service).
- Check within the existing data settings, if authentication already there or not, if it is there clear the permission.
- Firewall can be the issue for connection failure
Visualizations
Power BI custom visual: https://docs.microsoft.com/en-us/power-bi/developer/custom-visual-develop-tutorial
Blank Visualization: https://community.powerbi.com/t5/Desktop/Visualisations-blank-until-something-selected-in-a-slicer/td-p/109790
Filter record but 1st time show blank visuals : https://community.powerbi.com/t5/Desktop/Table-Visualisations-blank-until-something-selected-in-a-slicer/td-p/572696
SlicerCheck = =if(calculate(distinctcount([SlicerColumn]),allselected([SlicerColumn]))=1,"Y","N")
DAX
DAX function reference: List of all functions : https://docs.microsoft.com/en-us/dax/if-function-dax
Creating Date dimension Table
Dates =
GENERATE (
CALENDAR ( DATE ( 2019, 1, 1 ), DATE ( 2019, 12, 31 ) ),
VAR currentDay = [Date]
VAR day = DAY( currentDay )
VAR month = MONTH ( currentDay )
VAR year = YEAR ( currentDay )
VAR qtr = QTR (currentDay)
RETURN ROW (
"day", day,
"month", month,
"qtr", quarter,
"year", year )
)
Others
Embedded Code Reference: https://code.msdn.microsoft.com/How-to-embed-a-Power-BI-1bb9c04a
How to retrieve the Report tiles from Power BI dash board : https://powerbi.microsoft.com/en-us/documentation/powerbi-developer-integrate-tile/#step-2---get-an-access-token-from-azure-ad
Validate Html and JavaScript file : http://esprima.org/demo/validate.html
Pricing model : https://azure.microsoft.com/en-us/pricing/details/power-bi-embedded/
Comments
Post a Comment