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:

  • 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




 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



Pricing model : https://azure.microsoft.com/en-us/pricing/details/power-bi-embedded/ 
 

Comments

Popular posts from this blog

How to fix Azure DevOps error MSB4126

SharePoint Admin Center

How to create Custom Visuals in Power BI – Initial few Steps