Posts

Showing posts from May, 2021

How to get site collection created date in SharePoint Online

Image
  Q: How to get the site collection created date in SharePoint online Answer:  This can be done using the PnP SharePoint commands $connection  =   Connect-PnPOnline   - Url  " <SITE URL> "   - ReturnConnection  - UseWebLogin $web  =   Get-PnPWeb   - Includes Created  - Connection $connection Write-Host  $web.Created Happy Coding...!!!

How to check for empty for null and empty Values in Power Automate?

Image
  Q: How to check for empty for null and empty Values in Power Automate? ANSWER:  Checking for NULL Value. In order to check for the null value Go to Expressions and then type null, the value will show up Checking for EMPTY Value There is no direct way to check on the empty value, so in order to check if the string value is empty, check the length of the variable Happy Coding..!!!

How to get the difference in 'DAYS' between two dates in Power Automate?

Image
  Q: How to get the difference in 'DAYS' between two dates in Power Automate? A: In order to get the difference in Days follow the Below Formula div(sub(ticks('2021-05-10'), ticks('2021-05-10')), 864000000000) Happy Coding..!!