Category: News
Use sprints to be more Agile in Planner
The Planner team uses the sprints feature in premium plans to schedule tasks, balance our team’s workload, and run team retrospectives. Today, we want to share some of our tips for how sprints planning in the new Planner app in Teams can transform both your individual task management and collaborative team processes.
Why use sprints?
If you find yourself or your team needing to break down a complex project into manageable chunks, sprints are the tool for you. By separating tasks into time-boxed iterations, sprints allow you to focus on a set of tasks within a defined period so that your team can deliver value rapidly and continuously adapt to feedback.
Getting started
To use sprints in the new Planner, you’ll need a premium license. If you don’t have a premium license, you can still try the feature by acquiring a free 30-day trial.
To view and schedule your tasks by sprints, follow these three steps:
Open any premium plan in Planner. Note: To jumpstart the process and see what sprints could look like in a pre-existing plan, you can select our Sprint Planning template. This template can be found when creating a new plan.
Change to the Board view.
Select Group by > Sprint. In this view, you can set dates for each sprint and assign tasks to sprints. These sprints can be viewed in the Grid, Timeline and Charts views by selecting Filters > Sprints.
How should I use sprints?
The following is a list of ways our team uses sprints in our feature development processes. How else do you use sprints on your team? Feel free to drop a comment down below!
Scheduling tasks: Select Group by > Sprint in Board view to add tasks to sprints, create new sprints, or view all sprints and their associated tasks at a glance.
Balancing workloads: Select the Sprints filter in People view to track what each team member is working on for the sprint. You can modify team members’ workloads by dragging and dropping tasks from one person to another in this view.
Sprint retrospectives: Use Filters > Sprints in Board view to reflect on your team’s accomplishments by evaluating task progress and remaining tasks in the sprint. You can also create buckets in the general Board view to track what went well and what could be better.
Share your feedback
Your feedback helps inform our feature updates and we look forward to hearing from you as you try out Planner’s new and existing capabilities! To share your feedback about the new Planner app in Teams, you can navigate to the ? icon in the Planner app and select ‘Feedback’ as seen in the GIF below. We also encourage you to share any features you would like to see in the app by adding it to our Planner Feedback Portal.
Learn more about the new Planner
To get the inside scoop on the new Planner watch the Meet the Makers and our AMA.
Read about our investments for organizations using the new Planner with frontline workers.
Try out the new Copilot in Planner (preview) today in the new Microsoft Planner in Teams
Check out the new Planner adoption website and explore new resources such as Day in the Life Guides to use Planner for task management, collaborative work management and project management.
We’ve got a lot more ‘planned’ for the new Planner this year! Stay tuned to the Planner Blog – Microsoft Community Hub for news.
For future updates coming to the new Planner app, please view the Microsoft 365 roadmap here.
Learn about Planner and Project plans and pricing here.
Read the FAQs here.
Microsoft Tech Community – Latest Blogs –Read More
Matlab asks me to sign in when I’m offline
Matlab asks me to sign in when I’m offline, as this is impossible I can’t use Matlab while offline.
I can use Matlab no problem when I’m online and it does not ask me to sign in.
When I’m offline a Sign In window appears with this error:
Unable to contact login services. There may be a problem with your internet connection, or the service may be temporarily unavailable. If the problem persists contact MathWorks technical support.
Any fix for this?Matlab asks me to sign in when I’m offline, as this is impossible I can’t use Matlab while offline.
I can use Matlab no problem when I’m online and it does not ask me to sign in.
When I’m offline a Sign In window appears with this error:
Unable to contact login services. There may be a problem with your internet connection, or the service may be temporarily unavailable. If the problem persists contact MathWorks technical support.
Any fix for this? Matlab asks me to sign in when I’m offline, as this is impossible I can’t use Matlab while offline.
I can use Matlab no problem when I’m online and it does not ask me to sign in.
When I’m offline a Sign In window appears with this error:
Unable to contact login services. There may be a problem with your internet connection, or the service may be temporarily unavailable. If the problem persists contact MathWorks technical support.
Any fix for this? login, offline MATLAB Answers — New Questions
Bar chart from Excel with hidden columns
Hi there
I want to create the attached chart (plus an average line per section) with Matlab. I can do it super quick with Excel, but unfortunately it didn´t work well with Matlab.
There are three complications for me. 1 – How can I can exclude the hidden columns? 2 – What is the best way to deal with German numbers with comma instead of point? 3 -And Is there any way to have an average line per section?
Seems the "readtable" doesn´t work well with commas.
ThanksHi there
I want to create the attached chart (plus an average line per section) with Matlab. I can do it super quick with Excel, but unfortunately it didn´t work well with Matlab.
There are three complications for me. 1 – How can I can exclude the hidden columns? 2 – What is the best way to deal with German numbers with comma instead of point? 3 -And Is there any way to have an average line per section?
Seems the "readtable" doesn´t work well with commas.
Thanks Hi there
I want to create the attached chart (plus an average line per section) with Matlab. I can do it super quick with Excel, but unfortunately it didn´t work well with Matlab.
There are three complications for me. 1 – How can I can exclude the hidden columns? 2 – What is the best way to deal with German numbers with comma instead of point? 3 -And Is there any way to have an average line per section?
Seems the "readtable" doesn´t work well with commas.
Thanks excel MATLAB Answers — New Questions
how to mirror plots?
i hv theta value as 60 and 61 each theta value has phi of 120 240 with corresponding total values.
i hv to mirror data that is phi values data from 120 to 180 should be mirrored to 180 to 240 and then its plot is plotted. aim is to get plots symmetry xaxis is phi y axis is total with respect to theta percentile plots.i hv tried with excel sheet but my data is in .tab file how to import that format file and plot from it
a=xlsread(‘1GHzHH.xlsx’);
theta=a(:,1);
phi=a(:,2);
total=a(:,3);
figure
plot(phi,total)
% f=[1];
% pol=[‘HH”VV’];
%
% for i=1:size(pol)
% m=strcat(pol,’GHz’)
% j=strcat(f,m) %i m trying to read file which i hv imported file name is 1GHzHH.tab
% theta=data(:,1);
% phi=data(:,2);
% total=data(:,3);
% for j=1:nume1(theta)
% for k=1:nume1(phi)
%
% end
% end
% endi hv theta value as 60 and 61 each theta value has phi of 120 240 with corresponding total values.
i hv to mirror data that is phi values data from 120 to 180 should be mirrored to 180 to 240 and then its plot is plotted. aim is to get plots symmetry xaxis is phi y axis is total with respect to theta percentile plots.i hv tried with excel sheet but my data is in .tab file how to import that format file and plot from it
a=xlsread(‘1GHzHH.xlsx’);
theta=a(:,1);
phi=a(:,2);
total=a(:,3);
figure
plot(phi,total)
% f=[1];
% pol=[‘HH”VV’];
%
% for i=1:size(pol)
% m=strcat(pol,’GHz’)
% j=strcat(f,m) %i m trying to read file which i hv imported file name is 1GHzHH.tab
% theta=data(:,1);
% phi=data(:,2);
% total=data(:,3);
% for j=1:nume1(theta)
% for k=1:nume1(phi)
%
% end
% end
% end i hv theta value as 60 and 61 each theta value has phi of 120 240 with corresponding total values.
i hv to mirror data that is phi values data from 120 to 180 should be mirrored to 180 to 240 and then its plot is plotted. aim is to get plots symmetry xaxis is phi y axis is total with respect to theta percentile plots.i hv tried with excel sheet but my data is in .tab file how to import that format file and plot from it
a=xlsread(‘1GHzHH.xlsx’);
theta=a(:,1);
phi=a(:,2);
total=a(:,3);
figure
plot(phi,total)
% f=[1];
% pol=[‘HH”VV’];
%
% for i=1:size(pol)
% m=strcat(pol,’GHz’)
% j=strcat(f,m) %i m trying to read file which i hv imported file name is 1GHzHH.tab
% theta=data(:,1);
% phi=data(:,2);
% total=data(:,3);
% for j=1:nume1(theta)
% for k=1:nume1(phi)
%
% end
% end
% end plot MATLAB Answers — New Questions
Script.SQL to .MSF/.LOG
Good afternoon
I’m downgrading a sql 2019 database with 8GB to sql 2014, I’ve already created the script (it ended up with 32GB), now I’m trying to open it in Studio Management to run the script and create the MDF and Log and gives the error in the print, can anyone help
I’m doing this on a machine with a lot of resources 32GB RAM Ryzen7 etc…
Good afternoon
I’m downgrading a sql 2019 database with 8GB to sql 2014, I’ve already created the script (it ended up with 32GB), now I’m trying to open it in Studio Management to run the script and create the MDF and Log and gives the error in the print, can anyone help
I’m doing this on a machine with a lot of resources 32GB RAM Ryzen7 etc… Read More
Trigger to send email if a table has had a INSERT, UPDATE OR DELETE
We need a trigger to be sent out if ProcessSchedule has had an INERT, UPDATE or DELETE
We don’t need details just a heads up type of email.
The send email part is easy.
EXEC msdb.dbo.sp_send_dbmail @profile_name = ‘SQLMail’
,@recipients = ’email address removed for privacy reasons’
,@body = ‘Press Schedule Changed’
,@subject = ‘Press Schedule Changed’
The trigger part I have not done before.
Any help would be greatly appreciated.
We need a trigger to be sent out if ProcessSchedule has had an INERT, UPDATE or DELETE We don’t need details just a heads up type of email.The send email part is easy. EXEC msdb.dbo.sp_send_dbmail @profile_name = ‘SQLMail’,@recipients = ’email address removed for privacy reasons’,@body = ‘Press Schedule Changed’,@subject = ‘Press Schedule Changed’ The trigger part I have not done before.Any help would be greatly appreciated. Read More
Batch file with Defender Deception
Hi all,
Last year when Defender Deception was introduced, we enabled the default rule. By July this year, we started noticing some bat.backup files with these deception users in few computers which are in scope of this deception rule. (Mostly C:usersdefault or C:UsersUsername directory) and file names are usually loginmonitor.bat.backup)
Content of the file sample as below
net user \devicenamemonitor /USER:DECEPTION_USER PASSWORD
ping 8.8.8.8 >> \devicenamemonitor%HOSTNAEM%.txt
date >> \devicenamemonitor%HOSTNAEM%.txt
ipconfig /a >> \devicenamemonitor%HOSTNAEM%.txt
Some devices will have ping 1.1.1.1
Could map those users to deception users created, but wondering what happend in the last month or so that Defender creating these, possibly lure files as mentioned in the setup window (attached)
Anyone else noticed this?
Hi all, Last year when Defender Deception was introduced, we enabled the default rule. By July this year, we started noticing some bat.backup files with these deception users in few computers which are in scope of this deception rule. (Mostly C:usersdefault or C:UsersUsername directory) and file names are usually loginmonitor.bat.backup) Content of the file sample as belownet user \devicenamemonitor /USER:DECEPTION_USER PASSWORDping 8.8.8.8 >> \devicenamemonitor%HOSTNAEM%.txtdate >> \devicenamemonitor%HOSTNAEM%.txtipconfig /a >> \devicenamemonitor%HOSTNAEM%.txtSome devices will have ping 1.1.1.1Could map those users to deception users created, but wondering what happend in the last month or so that Defender creating these, possibly lure files as mentioned in the setup window (attached)Anyone else noticed this? Read More
New Blog | Public preview: Microsoft Entra ID FIDO2 provisioning APIs
By Alex Weinert
Today I’m excited to announce a great new way to onboard employees with admin provisioning of FIDO2 security keys (passkeys) on behalf of users.
Our customers love passkeys as a phishing-resistant method for their users, but some were concerned that registration was limited to users registering their own security keys. Today we’re announcing the new Microsoft Entra ID FIDO2 provisioning APIs that empowers organizations to handle this provisioning for their users, providing secure and seamless authentication from day one.
While customers can still deploy security keys in their default configuration to their users, or allow users to bring their own security keys which requires self-service registration by a user, the APIs allow keys to be pre-provisioned for users, so users have an easier experience on first use.
Adopting phishing-resistant authentication is critical – attackers have increased their use of Adversary-in-the-Middle (AitM) phishing and social engineering attacks to target MFA-enabled users. Phishing-resistant authentication methods, including passkeys, certificate-based authentication (CBA), and Windows Hello for Business, are the best ways to protect from these attacks.
Phishing-resistant authentication is also a key requirement of Executive Order 14028 which requires phishing-resistant authentication for all agency staff, contractors, and partners. While most federal customers use preexisting smartcard systems to achieve compliance, passkeys provide a secure alternative for their users looking for improved ways to securely sign in. With today’s release of admin provisioning, they also have a simplified onboarding process for users.
Read the full post here: Public preview: Microsoft Entra ID FIDO2 provisioning APIs
By Alex Weinert
Today I’m excited to announce a great new way to onboard employees with admin provisioning of FIDO2 security keys (passkeys) on behalf of users.
Our customers love passkeys as a phishing-resistant method for their users, but some were concerned that registration was limited to users registering their own security keys. Today we’re announcing the new Microsoft Entra ID FIDO2 provisioning APIs that empowers organizations to handle this provisioning for their users, providing secure and seamless authentication from day one.
While customers can still deploy security keys in their default configuration to their users, or allow users to bring their own security keys which requires self-service registration by a user, the APIs allow keys to be pre-provisioned for users, so users have an easier experience on first use.
Adopting phishing-resistant authentication is critical – attackers have increased their use of Adversary-in-the-Middle (AitM) phishing and social engineering attacks to target MFA-enabled users. Phishing-resistant authentication methods, including passkeys, certificate-based authentication (CBA), and Windows Hello for Business, are the best ways to protect from these attacks.
Phishing-resistant authentication is also a key requirement of Executive Order 14028 which requires phishing-resistant authentication for all agency staff, contractors, and partners. While most federal customers use preexisting smartcard systems to achieve compliance, passkeys provide a secure alternative for their users looking for improved ways to securely sign in. With today’s release of admin provisioning, they also have a simplified onboarding process for users.
Read the full post here: Public preview: Microsoft Entra ID FIDO2 provisioning APIs
Word 365 for Mac not showing red lines under spelling errors…
I’m not sure what happened, but I think maybe someone sent a document with certain settings on it, and now I don’t see any of the red squiggly lines that highlight spelling and grammar errors on Word.
I’m using Word 365 on Mac.
I’ve already tried uninstalling and reinstalling word to no effect.
Check spelling as you type and Check grammar as you type are turned ON in the settings.
If anyone could help I’d be very grateful, as it’s driving me insane!
I’m not sure what happened, but I think maybe someone sent a document with certain settings on it, and now I don’t see any of the red squiggly lines that highlight spelling and grammar errors on Word. I’m using Word 365 on Mac. I’ve already tried uninstalling and reinstalling word to no effect. Check spelling as you type and Check grammar as you type are turned ON in the settings. If anyone could help I’d be very grateful, as it’s driving me insane! Read More
List users not in distribution lists
I am looking for a way to list all users that are not in 8 specific distribution lists.
I have found an option that gets close but it is not correct.
I only want to display the users that are not in list 1, or list 2, or list 3, or list 4, or list 5 or list 6 or, list 7, or list 8.
The script I found does not appear to apply the “or” to the query.
I also need it to export to a file rather than display on the screen.
Here is a copy of the syntax I found.
$Users = Get-Mailbox | ? {$_.PrimarySmtpAddress -like “*MyDomain.com”} #Enter your domain
$DistributionGroups = @(“List 1″,”List 2″,”List 3″,”List 4″,”List 5″,”List 6″,”List 7″,”List 8”) #Enter names of your distributiongroups
foreach($DistributionGroup in $DistributionGroups)
{
$DistributionGroupMembers = Get-DistributionGroupMember $DistributionGroup
foreach($User in $Users)
{
foreach($DistributionGroupMember in $DistributionGroupMembers)
{
if($DistributionGroupMember.PrimarySmtpAddress -ne $User.PrimarySmtpAddress)
{
Write-Host “$($User.PrimarySmtpAddress) missing in $DistributionGroup” #Export output here fx.
}
}
}
}
I am looking for a way to list all users that are not in 8 specific distribution lists.I have found an option that gets close but it is not correct.I only want to display the users that are not in list 1, or list 2, or list 3, or list 4, or list 5 or list 6 or, list 7, or list 8.The script I found does not appear to apply the “or” to the query.I also need it to export to a file rather than display on the screen.Here is a copy of the syntax I found. $Users = Get-Mailbox | ? {$_.PrimarySmtpAddress -like “*MyDomain.com”} #Enter your domain$DistributionGroups = @(“List 1″,”List 2″,”List 3″,”List 4″,”List 5″,”List 6″,”List 7″,”List 8”) #Enter names of your distributiongroupsforeach($DistributionGroup in $DistributionGroups){$DistributionGroupMembers = Get-DistributionGroupMember $DistributionGroupforeach($User in $Users){foreach($DistributionGroupMember in $DistributionGroupMembers){if($DistributionGroupMember.PrimarySmtpAddress -ne $User.PrimarySmtpAddress){Write-Host “$($User.PrimarySmtpAddress) missing in $DistributionGroup” #Export output here fx.}}}} Read More
How to convert euler angles to rotation matrix and back to euler angles consistently?
I want to compare the rotations from two different sources. However, I can do it only in R3, using Euler angles. However, it seems even for an elementary conversion, we don’t get matching euler vectors. I know that there can be non-unique representations for the same rotation matrix, but is there a way, where I can enforce some particular angle range output so that the vectors match? Maybe a constraint like rotation in Z has to be positive.
For eg.
%% Euler Angle -> Rotation Matrix -> Euler Angle
Rzc = -0.0030; Ryc = -2.4788; Rxc = 0.0180;
eul_seq_c_in = [Rzc, Ryc, Rxc]
rotm_c = eul2rotm(eul_seq_c_in);
eul_seq_c_out = rotm2eul(rotm_c)
%% Many to One Mapping for Euler Angle
eul2rotm(eul_seq_c_in)
eul2rotm(eul_seq_c_out)
For my application, all I get is a sequence of euler angles as an input. Then, I get a rotation transform independently, whose Euler sequence is calculated. And then I verify, if they represent the same rotation transform.I want to compare the rotations from two different sources. However, I can do it only in R3, using Euler angles. However, it seems even for an elementary conversion, we don’t get matching euler vectors. I know that there can be non-unique representations for the same rotation matrix, but is there a way, where I can enforce some particular angle range output so that the vectors match? Maybe a constraint like rotation in Z has to be positive.
For eg.
%% Euler Angle -> Rotation Matrix -> Euler Angle
Rzc = -0.0030; Ryc = -2.4788; Rxc = 0.0180;
eul_seq_c_in = [Rzc, Ryc, Rxc]
rotm_c = eul2rotm(eul_seq_c_in);
eul_seq_c_out = rotm2eul(rotm_c)
%% Many to One Mapping for Euler Angle
eul2rotm(eul_seq_c_in)
eul2rotm(eul_seq_c_out)
For my application, all I get is a sequence of euler angles as an input. Then, I get a rotation transform independently, whose Euler sequence is calculated. And then I verify, if they represent the same rotation transform. I want to compare the rotations from two different sources. However, I can do it only in R3, using Euler angles. However, it seems even for an elementary conversion, we don’t get matching euler vectors. I know that there can be non-unique representations for the same rotation matrix, but is there a way, where I can enforce some particular angle range output so that the vectors match? Maybe a constraint like rotation in Z has to be positive.
For eg.
%% Euler Angle -> Rotation Matrix -> Euler Angle
Rzc = -0.0030; Ryc = -2.4788; Rxc = 0.0180;
eul_seq_c_in = [Rzc, Ryc, Rxc]
rotm_c = eul2rotm(eul_seq_c_in);
eul_seq_c_out = rotm2eul(rotm_c)
%% Many to One Mapping for Euler Angle
eul2rotm(eul_seq_c_in)
eul2rotm(eul_seq_c_out)
For my application, all I get is a sequence of euler angles as an input. Then, I get a rotation transform independently, whose Euler sequence is calculated. And then I verify, if they represent the same rotation transform. rotation, transforms, euler MATLAB Answers — New Questions
EEG data Visualization for .mat file
I have an EEG data stored as . mat file , I want to visualize the EEG , What command should I use?
the sampling rate = 500
num of channels = 66
num of points = 250734
sample file is attached as image because the file size is too much big.I have an EEG data stored as . mat file , I want to visualize the EEG , What command should I use?
the sampling rate = 500
num of channels = 66
num of points = 250734
sample file is attached as image because the file size is too much big. I have an EEG data stored as . mat file , I want to visualize the EEG , What command should I use?
the sampling rate = 500
num of channels = 66
num of points = 250734
sample file is attached as image because the file size is too much big. eeg, image processing, visualization MATLAB Answers — New Questions
NaN issue and if statement
I’m having trouble with my code when I add an if condition to check if B_body(3) is less than 1e-5.
Without the if condition, everything works fine.
But when I add the if condition, I get a warning and B_body(3) values become NaN.
I’ve tried several solutions, but nothing works.
Any ideas on how to fix this?
epsilon=1e-5;
if abs(B_body(3))<epsilon
T_rw=[0;0;0];
else
T_rw = [0; 0; 1] * (B_body’ * T_commanded) / (B_body(3));
endI’m having trouble with my code when I add an if condition to check if B_body(3) is less than 1e-5.
Without the if condition, everything works fine.
But when I add the if condition, I get a warning and B_body(3) values become NaN.
I’ve tried several solutions, but nothing works.
Any ideas on how to fix this?
epsilon=1e-5;
if abs(B_body(3))<epsilon
T_rw=[0;0;0];
else
T_rw = [0; 0; 1] * (B_body’ * T_commanded) / (B_body(3));
end I’m having trouble with my code when I add an if condition to check if B_body(3) is less than 1e-5.
Without the if condition, everything works fine.
But when I add the if condition, I get a warning and B_body(3) values become NaN.
I’ve tried several solutions, but nothing works.
Any ideas on how to fix this?
epsilon=1e-5;
if abs(B_body(3))<epsilon
T_rw=[0;0;0];
else
T_rw = [0; 0; 1] * (B_body’ * T_commanded) / (B_body(3));
end nan MATLAB Answers — New Questions
Organizer joining a Team and then starting a meeting
I recently tried to go into a meeting using the Join the Meeting link. But I also tried to use the Meeting ID and Passcode. I am the organizer along with one other person. We have many participants that bypass the lobby. Once in, the START MEETING button appears at the top right.
What happened is BEFORE the organizer (me) went in, one of the participants clicked START MEETING. I was not then able to even get in with the Join the Meeting link nor by entering the meeting ID and the passcode. I got a screen that said I had to register but then when I tried to register, the REGISTER button was greyed out. At the end, I (as the trainer/organizer) was not able to get in to deliver my training.
My colleague and I tested this with different meeting links and it seemed the consistent problem was if a participant clicked START MEETING prior to the organizer getting into the meeting.
Is there a way to NOT allow participants to actually click START MEETING?
I recently tried to go into a meeting using the Join the Meeting link. But I also tried to use the Meeting ID and Passcode. I am the organizer along with one other person. We have many participants that bypass the lobby. Once in, the START MEETING button appears at the top right.What happened is BEFORE the organizer (me) went in, one of the participants clicked START MEETING. I was not then able to even get in with the Join the Meeting link nor by entering the meeting ID and the passcode. I got a screen that said I had to register but then when I tried to register, the REGISTER button was greyed out. At the end, I (as the trainer/organizer) was not able to get in to deliver my training.My colleague and I tested this with different meeting links and it seemed the consistent problem was if a participant clicked START MEETING prior to the organizer getting into the meeting. Is there a way to NOT allow participants to actually click START MEETING? Read More
EDATES and SUMIFS Help
Hi All,
I have created a spreadsheet showing all frequent costs of my company which has columns for frequency, date and description.
On my second sheet I have the dates for 6 months across the top row and the frequency and description in the first column.
To populate the data in the first month I have input a simple SUMIF based on the date and the description of my frequent cost sheet.
For the following 11 months, I wanted to do a SUMIF based on the date in the first month.
For example:
SUMIF(AA$2:BE$2,EDATE(BF$2,-1),AA12:BE12),0)
AA$2:BE$2 are my date rows (range)
BF$2 is my current date (criteria)
AA12:BE12 are my costs (sum range) the issue I’m running into is if there is a cost on the 31st August, it will not pick it up on the 30th September.
Any idea how to fix this?
Thanks
Hi All, I have created a spreadsheet showing all frequent costs of my company which has columns for frequency, date and description.On my second sheet I have the dates for 6 months across the top row and the frequency and description in the first column. To populate the data in the first month I have input a simple SUMIF based on the date and the description of my frequent cost sheet. For the following 11 months, I wanted to do a SUMIF based on the date in the first month.For example:SUMIF(AA$2:BE$2,EDATE(BF$2,-1),AA12:BE12),0)AA$2:BE$2 are my date rows (range)BF$2 is my current date (criteria)AA12:BE12 are my costs (sum range) the issue I’m running into is if there is a cost on the 31st August, it will not pick it up on the 30th September. Any idea how to fix this? Thanks Read More
Sharepoint Connector ADF
Hi,
I am analyzing sharepoint connector which is used in ADF. I would like to know the limitations of using sharepoint connector in ADF in terms of
Authentication type supportedSpecific connection configuration neededCopy a whole folder or multiple files from sharepointthe size of the file which can be downloadedSecurity/firewall issuesAny other limitations or issues that we can expect
Hi,I am analyzing sharepoint connector which is used in ADF. I would like to know the limitations of using sharepoint connector in ADF in terms ofAuthentication type supportedSpecific connection configuration neededCopy a whole folder or multiple files from sharepointthe size of the file which can be downloadedSecurity/firewall issuesAny other limitations or issues that we can expect Read More
Toggles for GPT-4 and GPT-4 Turbo in Copilot Pro completely disappeared. Been missing for days.
Current Copilot Pro subscriber and a few days ago my toggles for which GPT-4 to select disappeared.
I’ve checked in Edge, Edge Dev, Edge Canary, and Chrome to make sure it’s not my browser being stupid and it’s gone everywhere. Even checked in the iOS mobile app and not there either.
Not sure if there’s some sort of A/B testing going around or it’s an Insider thing or what, but I can’t find any information suggesting that so not really sure what’s going on.
Is an updated GPT-4o being rolled out to Copilot Pro currently or something that does away with the toggles? Or is my shiz just borked? Am I the only one with this issue?
Any help or input is appreciated, thank you!
Current Copilot Pro subscriber and a few days ago my toggles for which GPT-4 to select disappeared. I’ve checked in Edge, Edge Dev, Edge Canary, and Chrome to make sure it’s not my browser being stupid and it’s gone everywhere. Even checked in the iOS mobile app and not there either. Not sure if there’s some sort of A/B testing going around or it’s an Insider thing or what, but I can’t find any information suggesting that so not really sure what’s going on. Is an updated GPT-4o being rolled out to Copilot Pro currently or something that does away with the toggles? Or is my shiz just borked? Am I the only one with this issue? Any help or input is appreciated, thank you! Read More
SharePoint Lists – Display one Choice selection in a Second Column Also.
I have two columns in a SharePoint List. Let’s call the Column 1 and Column 2. They are both Choice Columns. They also both share two common choices, Completed and Cancelled. If someone selects one of those choices in either column, I would like it to be automatically displayed in the other column also. Meaning, both columns should match if Completed or Cancelled are selected in either column. If another choice is selected in either column, the other column should remain empty, for a manual selection of one of the other choices. What would the JSON code be to do something like this?
I have two columns in a SharePoint List. Let’s call the Column 1 and Column 2. They are both Choice Columns. They also both share two common choices, Completed and Cancelled. If someone selects one of those choices in either column, I would like it to be automatically displayed in the other column also. Meaning, both columns should match if Completed or Cancelled are selected in either column. If another choice is selected in either column, the other column should remain empty, for a manual selection of one of the other choices. What would the JSON code be to do something like this? Read More
Join us for Partner Pre-Day at the European Microsoft Fabric Community Conference!
Join us Tuesday, September 24, 2024 for a full day of partner engagement on all things Microsoft Fabric, from partner-specific opportunities to strategies for landing key workloads with your customers. This learning and networking event is offered for free, exclusively to partners attending the European Microsoft Fabric Community Conference (FabCon Europe).
The conference will explore the limitless possibilities of Microsoft Fabric and the latest developments in analytics and AI. With 130 sessions, four keynotes, Ask the Experts opportunities, and plenty of networking activities, this will be the ultimate European event for Microsoft data, analytics, and AI.
The free Partner Pre-Day will include:
Deep dives into content specifically tailored for Microsoft partners.
A conversational AMA with top Microsoft leadership.
Time to mix and mingle with your peers and Microsoft counterparts.
Purchase your pass* to FabCon Europe and then make plans to join us early for this free day of partner content and networking.
Join us Tuesday, September 24, 2024 for a full day of partner engagement on all things Microsoft Fabric, from partner-specific opportunities to strategies for landing key workloads with your customers. This learning and networking event is offered for free, exclusively to partners attending the European Microsoft Fabric Community Conference (FabCon Europe).
The conference will explore the limitless possibilities of Microsoft Fabric and the latest developments in analytics and AI. With 130 sessions, four keynotes, Ask the Experts opportunities, and plenty of networking activities, this will be the ultimate European event for Microsoft data, analytics, and AI.
The free Partner Pre-Day will include:
Deep dives into content specifically tailored for Microsoft partners.
A conversational AMA with top Microsoft leadership.
Time to mix and mingle with your peers and Microsoft counterparts.
Purchase your pass* to FabCon Europe and then make plans to join us early for this free day of partner content and networking. Read More
Most widely used SharePoint Framework ISVs from the Store – July 2024
We are excited to see the continuous growth on the submissions of the SharePoint Framework (SPFx) solutions to the app source and on the usage of the SharePoint store for extending experiences for SharePoint and Microsoft Viva. Here are the top 10 most wide used ISVs based on the solution installations from the store and/or from Microsoft AppSource during July 2024.
SharePoint Framework is extensibility model for Microsoft Viva, Microsoft Teams, Outlook, Microsoft 365 app and SharePoint. It enables the same code to be used easily across the Microsoft 365 with this widely adopted tooling which uses industry standard tech with easy and automatic SSO and hosting. Usage of SPFx is growing steady and we have currently tens of millions of monthly active users in Microsoft 365 on custom extensibility build with SPFx.
Here are the latest roadmap items around SharePoint Framework and store:
Chart card support for the Viva Connections with the SPFx 1.19 release – more options in upcoming 1.20 release (beta in August 2024)
Deprecation of SharePoint add-in and Azure ACS authentication models – UX powered extensibility should be transformed to us SharePoint Framework powered implementations. Add-in model was introduced back in 2012 and has not really evolved since. This deprecation does not impact SharePoint Framework (SPFx) solutions.
Additional capabilities and features for SharePoint Framework solutions in Microsoft 365 as part of the SPFx 1.18 release.
Enabling Microsoft Viva Connections targeted solutions, powered by SharePoint Framework, in the app source and store – Will be automatically set for suitable SPFx solutions as part of the submission pipeline
Extending SharePoint Framework solutions across the Microsoft 365 with support for Microsoft Teams, Microsoft Viva, Outlook, Microsoft 365 app (Office), SharePoint and more – see the v1.16 release announcement for more details
Alignment of SharePoint Framework solution packaging model with the Microsoft Teams packages – include the best of both worlds and enable SPFx powered solutions across the Microsoft 365
Support for SharePoint Framework solutions in the Microsoft Teams store – no exact schedule, dependent on the previous bullet point
Support SharePoint Framework extensibility for list and library new, edit and view panels
and more to come…
What about AI extensibility story with SPFx? – Yes. Please see following session from Build 2024 for the preview of the upcoming extensibility options with the SPFx in the context of AI – Integrating your bots and Copilot experiences natively into SharePoint and Viva Connections. These will be also covered in our public community calls in autumn 2024.
We are looking forward to more great solutions that enable innovation, and help our customers get more done with Microsoft Viva, Microsoft Teams, SharePoint and more.
These are the ISVs which has the most usage from the SharePoint store during last month:
Accelerator 365 by Reply
Solution details:
Solutions at app source / store
Solution provider: Accelerator 365 by Reply
Sprinklr, Inc.
Solution details:
Solutions at app source / store
Solution provider: Sprinklr, Inc.
Achievers
Solution details:
Solutions at app source / store
Solution provider: Achievers
Ichicraft
Solution details:
Solutions at app source / store
Solution provider: Ichicract
Lightning Tools Ltd
Solution details:
Solutions at app source / store
Solution provider: Lightning Tools
Envoqon Software
Solution details:
Solutions at app source / store
Solution provider: Envogon Software
SharePoint|sapiens
Solution details:
Solution at app source / store
Solution provider: SharePoint | sapiens
Bloch Engineering
Solution details:
Solutions at app source / store
Solution provider: Bloch Engineering
Plumsail Inc
Solution details:
Solutions at app source / store
Solution provider: Plumsail Inc
Sharepointalist
Solution details:
Solutions at app source / store
Solution provider: Sharepointalist
Resources
Please see following resources around getting started on building extensibility for Microsoft Teams, Microsoft Viva and SharePoint using SharePoint Framework.
Announcing SharePoint Framework 1.19 with updates on building enterprise extensibility within Microsoft 365
Announcing SharePoint Framework 1.18 with updates for Microsoft Teams, Microsoft Viva and SharePoint
Announcing general availability of SharePoint Framework 1.16 – Enabling SPFx across Microsoft 365 platform
Explore and deploy SharePoint Framework solutions from partners in SharePoint (Microsoft 365)
Overview of the SharePoint Framework
Publish SharePoint Framework applications to the marketplace
Overview of Viva Connections Extensibility
Guidance for implementing partner offerings for Viva Connections with ACEs and custom APIs
Microsoft Learn – Extend Microsoft Viva Connections
SharePoint Framework samples to get started from Microsoft and community – Microsoft 365 & Power Platform Unified Sample Gallery
Happy coding! 🧡
Microsoft Tech Community – Latest Blogs –Read More