• Home
  • About Us
  • Contact Us
  • Privacy Policy
  • Special Offers
Business Intelligence Info
  • Business Intelligence
    • BI News and Info
    • Big Data
    • Mobile and Cloud
    • Self-Service BI
  • CRM
    • CRM News and Info
    • InfusionSoft
    • Microsoft Dynamics CRM
    • NetSuite
    • OnContact
    • Salesforce
    • Workbooks
  • Data Mining
    • Pentaho
    • Sisense
    • Tableau
    • TIBCO Spotfire
  • Data Warehousing
    • DWH News and Info
    • IBM DB2
    • Microsoft SQL Server
    • Oracle
    • Teradata
  • Predictive Analytics
    • FICO
    • KNIME
    • Mathematica
    • Matlab
    • Minitab
    • RapidMiner
    • Revolution
    • SAP
    • SAS/SPSS
  • Humor

Tag Archives: certain

Hello, I want to create a matrix with a certain number of rows and columns

December 6, 2020   BI News and Info

 Hello, I want to create a matrix with a certain number of rows and columns

Let’s block ads! (Why?)

Recent Questions – Mathematica Stack Exchange

Read More

How would we extract elements of a list greater than a certain value?

November 6, 2020   BI News and Info

 How would we extract elements of a list greater than a certain value?

1 Answer

Let’s block ads! (Why?)

Recent Questions – Mathematica Stack Exchange

Read More

Narrowing down table data to only print if certain conditions are satisfied

February 5, 2020   BI News and Info
 Narrowing down table data to only print if certain conditions are satisfied

suppose there is an ODE function F solved by NDSolve and the solution of this function is in the range [-40 : 34]. Only, I need where the F==0, or the value of F in the interval between [-1,1]. How can I achieve this by using table:

Table[If[F <= 10^-2, Print@F, Return["Exit", Table]];, {x, 3.2, 3.5, 0.01}, {y, 3.2, 3.5,0.01}]

Using the above code gives me all the negative region. So, I am trying to catch the value of function F when it close to zero or zero, and prints it if the following condition is satisfied: a) The F has a value close to zero. Thanks in advance for your time, and sorry if this is simple, I couldn’t find a solution within this site.

Let’s block ads! (Why?)

Recent Questions – Mathematica Stack Exchange

Read More

Luenell Gets Featured On Showtime’s ‘Funny WOmen Of A Certain Age’!

March 16, 2019   Humor
Luenell  Luenell Gets Featured On Showtime’s ‘Funny WOmen Of A Certain Age’!

Fran Drescher headlines FUNNY WOMEN OF A CERTAIN AGE a new comedy special premiering Friday, March 23 at 9/8c. Carole Montgomery, Luenell, Lynne Koplitz, Kerri Louise and Vanessa Hollingshead round out the lineup for the first television comedy special to feature six female comics over the age of 50. The outrageous hour-long special was filmed at The Bell House in Brooklyn.

Straight from the uninhibited mouths of some of the funniest, most daring and most experienced people in comedy, FUNNY WOMEN OF A CERTAIN AGE presents women who have seen it all through their careers in the comedy world and are sharing it all on stage as they break down the walls of ageism and sexism in each hilarious set.

FUNNY WOMEN OF A CERTAIN AGE is a monthly comedy showcase in New York and Los Angeles hosted by Montgomery, who is a well-known fixture on the comedy scene, performing for over 40 years. She’s made numerous television appearances including Politically Incorrect and Tough Crowd with Colin Quinn, starred in two long-running Las Vegas revues and made nearly a dozen tours around the world for Armed Forces Entertainment performing for our troops. Drescher is best known for her titular role on The Nanny and her autobiographical series Happily Divorced. Luenell is not only a touring comedian but a television star with credits including SNOOP DOGG’S BAD GIRLS OF COMEDY, It’s Always Sunny in Philadelphia and The Middle. In addition to her touring schedule, Louise was a finalist on Last Comic Standing, leading to her own reality show Two Funny. Hollingshead is an accomplished actor, performance artist and writer with a television pilot currently in the works called Take My Life, Please! Koplitz, a self-proclaimed lifelong bachelorette, most recently had her own comedy special in 2017 with Lynne Koplitz: Hormonal Beast.

FUNNY WOMEN OF A CERTAIN AGE is a Killer Bunny Entertainment production. Carole Montgomery, Dave Goldberg, Robert Cea and Evan Shapiro serve as executive producers.

Share this:

Like this:

Like Loading…

'The April Fool's Comedy Jam' At The Barclays Center Reveals An All Star Line Up!

Let’s block ads! (Why?)

The Humor Mill

Read More

Disable Power BI Workspace or group creation for certain users or groups

February 10, 2017   Self-Service BI

One of the questions that I get asked sometimes is how to prevent users from creating groups / workspaces in Power BI. I recently found out this is actually possible and we’ll in this blog on how you can set that up. But before we continue it is good understand how workspaces in PowerBI currently work. Whenever you create a workspace it automatically creates a group in Azure AD and Office 365 with the same name. This makes sure you can use the Office 365 things like using files in the document library, calendar, conversations:

 Disable Power BI Workspace or group creation for certain users or groups

By default all users in Office 365 have the permission to create Office 365 Groups and Power BI follow this. By design Office 365 Groups are intended to be created and managed by both admins and end users, to inculcate better collaboration among the team members of a project or students and staffs. However in some organizations, they practice strong security policy, as a result they require Office 365 Group creation to be controlled only by specific users. The theme here is ofcourse that workspaces and groups in Power BI are based on Azure AD and Office 365. That means you can also use those management tools to manage the security around it, similar as you would for Office 365.  Let’s look at how you can do this and what it does to your Power BI. I used these two great blog posts to make it work:

https://drewmadelung.com/managing-office-365-group-creation-via-azure-ad/

http://www.jijitechnologies.com/blogs/disable-office365-group-creation-in-azureAD

I mostly used code from the top one to get it up and running, this is completly based on PowerShell commands that makes changes to your Azure AD instance, there is no UI for it today.

Just one word of warning, please do not immediately run this in production and make sure you get advise from your Azure AD/PowerShell specialist as I am neither.

Here is the code to make it happen, I took those form the blog posts above that cover the actual PowerShell commands in more details.

'Install the AzureAD Preview if needed
Save-Module -Name AzureADPreview -Path C:\temp\ad
Install-Module -Name AzureADPreview
'Install AD http://connect.microsoft.com/site1164/Downloads/DownloadDetails.aspx?DownloadID=59185
'from this download get the Azure Active Directory PowerShell V1 &amp;nbsp;Preview

$  username = "YOURUSERNAME"
$  password =  ConvertTo-SecureString -String "PASSWORD" -AsPlainText -Force
'These are your AD credentials, it should be a user who is AD admin
$  cred = new-object -typename System.Management.Automation.PSCredential -argumentlist $  username, $  password

'Connect to Azure AD
Connect-MsolService -Credential $  cred

'Check all the setting
Get-MsolAllSettings | ForEach Values

'Does it return any value? then get the group ID you want here
Get-MsolGroup
'If no value is returned go to Azure AD and get the ID from the group  you want to enable there from the Azure AD UI.

'Now finally Run this to disable group creation and then enable it for the group we picked up above. 
'If you leave the groupid empty creating groups will only be possible for admins not for groups, you can change this later, one of the blog posts above describes how.
$  Gpmodify = Get-MsolSettingTemplate | where-object {$  _.displayname -eq “Group.Unified”}
$  Setobj = $  Gpmodify.CreateSettingsObject()
$  Setobj[“EnableGroupCreation”] = “false”
$  Setobj[“GroupCreationAllowedGroupId”] = "GROUPID"
New-MsolSettings –SettingsObject $  Setobj

'Check if it is set correctly:
Get-MsolAllSettings | ForEach Values

Now we can see that the Group Creation is turned off expect for

 Disable Power BI Workspace or group creation for certain users or groups

Now let’s see what this does do for one of my users. I now log into Power BI as my non admin user and try to create a group:

 Disable Power BI Workspace or group creation for certain users or groups

This results in:

 Disable Power BI Workspace or group creation for certain users or groups

Which is exactly what we want.

Now I go back to Power BI and add the user to the “PBIGroupUsers” group that I gave access to create groups:

 Disable Power BI Workspace or group creation for certain users or groups

And when we now try again, it works and the group\workspace gets created:

 Disable Power BI Workspace or group creation for certain users or groups

So that is it. It is pretty cool that this just works  Disable Power BI Workspace or group creation for certain users or groups.

Share this:

Let’s block ads! (Why?)

Kasper On BI

Read More
  • Recent Posts

    • Accelerate Your Data Strategies and Investments to Stay Competitive in the Banking Sector
    • SQL Server Security – Fixed server and database roles
    • Teradata Named a Leader in Cloud Data Warehouse Evaluation by Independent Research Firm
    • Derivative of a norm
    • TODAY’S OPEN THREAD
  • Categories

  • Archives

    • April 2021
    • March 2021
    • February 2021
    • January 2021
    • December 2020
    • November 2020
    • October 2020
    • September 2020
    • August 2020
    • July 2020
    • June 2020
    • May 2020
    • April 2020
    • March 2020
    • February 2020
    • January 2020
    • December 2019
    • November 2019
    • October 2019
    • September 2019
    • August 2019
    • July 2019
    • June 2019
    • May 2019
    • April 2019
    • March 2019
    • February 2019
    • January 2019
    • December 2018
    • November 2018
    • October 2018
    • September 2018
    • August 2018
    • July 2018
    • June 2018
    • May 2018
    • April 2018
    • March 2018
    • February 2018
    • January 2018
    • December 2017
    • November 2017
    • October 2017
    • September 2017
    • August 2017
    • July 2017
    • June 2017
    • May 2017
    • April 2017
    • March 2017
    • February 2017
    • January 2017
    • December 2016
    • November 2016
    • October 2016
    • September 2016
    • August 2016
    • July 2016
    • June 2016
    • May 2016
    • April 2016
    • March 2016
    • February 2016
    • January 2016
    • December 2015
    • November 2015
    • October 2015
    • September 2015
    • August 2015
    • July 2015
    • June 2015
    • May 2015
    • April 2015
    • March 2015
    • February 2015
    • January 2015
    • December 2014
    • November 2014
© 2021 Business Intelligence Info
Power BI Training | G Com Solutions Limited