Category: News
Converting From Open Office
I am converting a spreadsheet from OpenOffice to Excel. OpenOffice has a window in its “ribbon” that allows you to enter a term and the program will “find” the next cell with that term and then let you find the next entry of it, and so on. Excell has a find function and a search function, but they have more steps and are more complicated. Am I missing something simple in Excel that does the same thing?
I am converting a spreadsheet from OpenOffice to Excel. OpenOffice has a window in its “ribbon” that allows you to enter a term and the program will “find” the next cell with that term and then let you find the next entry of it, and so on. Excell has a find function and a search function, but they have more steps and are more complicated. Am I missing something simple in Excel that does the same thing? Read More
Solution: Installing the MSIX Packaging Tool and Driver when Internet is not accessible.
A customer asked for my help in getting the packaging tool and associated driver installed on a VM that is not connected to the internet. In their case, the VM disk was online for a prep phase as part of a Citrix MCS image-prep scenario.
Microsoft has a document Using the MSIX Packaging Tool in a disconnected environment – MSIX | Microsoft Learn which attempts to explain what is needed, but really covers the offline case (meaning that the image you are installing is not the running OS), and this leads to confusion. I am documenting the approach that I came up with for this online, but detached from the internet, scenario.
First, read the article mentioned above and gather the files that you will need. You will want the two files for the packaging tool (the msixbundle and the license), and the appropriate FOD cab file for the OS version that you will be installing into. For the script below, I added the cab file to a subfolder (W10Driver).
You copy the folder with these files onto the target system somewhere, and then open a PowerShell (or ISE) window with elevated privileges and run the script.
NOTE: Forum rules prevent me from putting in the real name of the command needed to install the driver. So it appears below as XDISM. Please remove the letter X.
# Get folder that this PS1 file is in so that we can find files correctly from relative references
$executingScriptDirectory = Split-Path -Path $MyInvocation.MyCommand.Definition -Parent
Add-AppxProvisionedPackage -online -PackagePath “$($executingScriptDirectory)MSIXPackagingtoolv1.2024.405.0.msixbundle” -LicensePath “$($executingScriptDirectory)Microsoft.MSIXPackagingTool_8wekyb3d8bbwe_cef5ab15-7bbf-b9b8-e614-3a6718b22258.xml”
XDISM /Online /add-package /packagepath:”$($executingScriptDirectory)W10DriverMsix-PackagingTool-Driver-Package~31bf3856ad364e35~amd64~~.cab”
Start-Sleep 10
A customer asked for my help in getting the packaging tool and associated driver installed on a VM that is not connected to the internet. In their case, the VM disk was online for a prep phase as part of a Citrix MCS image-prep scenario.
Microsoft has a document Using the MSIX Packaging Tool in a disconnected environment – MSIX | Microsoft Learn which attempts to explain what is needed, but really covers the offline case (meaning that the image you are installing is not the running OS), and this leads to confusion. I am documenting the approach that I came up with for this online, but detached from the internet, scenario.
First, read the article mentioned above and gather the files that you will need. You will want the two files for the packaging tool (the msixbundle and the license), and the appropriate FOD cab file for the OS version that you will be installing into. For the script below, I added the cab file to a subfolder (W10Driver).
You copy the folder with these files onto the target system somewhere, and then open a PowerShell (or ISE) window with elevated privileges and run the script.
NOTE: Forum rules prevent me from putting in the real name of the command needed to install the driver. So it appears below as XDISM. Please remove the letter X.
# Get folder that this PS1 file is in so that we can find files correctly from relative references$executingScriptDirectory = Split-Path -Path $MyInvocation.MyCommand.Definition -Parent
Add-AppxProvisionedPackage -online -PackagePath “$($executingScriptDirectory)MSIXPackagingtoolv1.2024.405.0.msixbundle” -LicensePath “$($executingScriptDirectory)Microsoft.MSIXPackagingTool_8wekyb3d8bbwe_cef5ab15-7bbf-b9b8-e614-3a6718b22258.xml”
XDISM /Online /add-package /packagepath:”$($executingScriptDirectory)W10DriverMsix-PackagingTool-Driver-Package~31bf3856ad364e35~amd64~~.cab”
Start-Sleep 10
Old file server still present in registry on user profiles
We are running FSLogix 2.9.8884.27471 on Server 2022. Our domain controllers are all Server 2022. We just migrated to a new file server. The Citrix profiles are stored on a completely different server; we have not changed the Citrix profile file server. We only changed/migrated the general file server used for general file storage.
After we powered off the old file server, Citrix users complained of “slowness” when using File Explorer. We discovered that there are a bunch of references to the old file server in each user’s FSLogix profile registry. If we mount the FSLogix profile, when a user is logged out, and delete the references from a user’s profile registry, the “slowness” issues with File Explorer, are resolved. The registry entries that seem to be present in each user’s profile are located in the following:
HKUFSL.VHD.****SoftwareMicrosoftWindowsCurrentVersionExplorerMountPoints 2 (there are a couple mount points still present for the old file server)
HKUFSL.VHD.****SoftwareMicrosoftWindowsCurrentVersionExplorerShell Folders (we use GPO to redirect a users “Favorites” folder – the old file server is still listed in the “Favorites” registry entry, even though the GPO is setup to point to the new file server)
HKUFSL.VHD.****SoftwareMicrosoftWindowsCurrentVersionExplorerUser Shell Folders (we use GPO to redirect a users “Favorites” folder – the old file server is still listed in the “Favorites” registry entry, even though the GPO is setup to point to the new file server)
When we delete the “Favorites” entries, we find that after a user logs in/out, the “Favorites” entry updates properly to the new file server path.
We can also remedy the File Explorer “slowness” by simply powering on the old file server. Again, all of the sharing on the old file server has been disabled. So it seems like as long as a user can “ping” the old file server, then that’s all FSLogix needs to ensure that File Explorer works.
This issue does not occur on physical Windows computers/servers- only with with FSLogix profiles.
Instead of either leaving on the old file server powered on, or manually editing the registry in each user’s profile, is there a way to remove (or update) these registry entries that point to the old file server?
We are running FSLogix 2.9.8884.27471 on Server 2022. Our domain controllers are all Server 2022. We just migrated to a new file server. The Citrix profiles are stored on a completely different server; we have not changed the Citrix profile file server. We only changed/migrated the general file server used for general file storage. After we powered off the old file server, Citrix users complained of “slowness” when using File Explorer. We discovered that there are a bunch of references to the old file server in each user’s FSLogix profile registry. If we mount the FSLogix profile, when a user is logged out, and delete the references from a user’s profile registry, the “slowness” issues with File Explorer, are resolved. The registry entries that seem to be present in each user’s profile are located in the following: HKUFSL.VHD.****SoftwareMicrosoftWindowsCurrentVersionExplorerMountPoints 2 (there are a couple mount points still present for the old file server) HKUFSL.VHD.****SoftwareMicrosoftWindowsCurrentVersionExplorerShell Folders (we use GPO to redirect a users “Favorites” folder – the old file server is still listed in the “Favorites” registry entry, even though the GPO is setup to point to the new file server) HKUFSL.VHD.****SoftwareMicrosoftWindowsCurrentVersionExplorerUser Shell Folders (we use GPO to redirect a users “Favorites” folder – the old file server is still listed in the “Favorites” registry entry, even though the GPO is setup to point to the new file server) When we delete the “Favorites” entries, we find that after a user logs in/out, the “Favorites” entry updates properly to the new file server path. We can also remedy the File Explorer “slowness” by simply powering on the old file server. Again, all of the sharing on the old file server has been disabled. So it seems like as long as a user can “ping” the old file server, then that’s all FSLogix needs to ensure that File Explorer works. This issue does not occur on physical Windows computers/servers- only with with FSLogix profiles. Instead of either leaving on the old file server powered on, or manually editing the registry in each user’s profile, is there a way to remove (or update) these registry entries that point to the old file server? Read More
Permalink does not scroll to the message in Microsoft Teams
I am attaching a permalink to text in my adaptive card, which I am sending to a Microsoft Teams public channel. However, when I click on the permalink, nothing happens. When I copy the link and paste it into a new tab, it opens the correct message, which means the permalink is correct. I am also attaching a video for context.
Please fix this issue in Microsoft Teams as soon as possible, or if this behavior is expected, kindly let me know.
I am attaching a permalink to text in my adaptive card, which I am sending to a Microsoft Teams public channel. However, when I click on the permalink, nothing happens. When I copy the link and paste it into a new tab, it opens the correct message, which means the permalink is correct. I am also attaching a video for context. Please fix this issue in Microsoft Teams as soon as possible, or if this behavior is expected, kindly let me know. Read More
New regex modes for XLOOKUP and XMATCH
Microsoft 365 Insiders,
Great news for Excel enthusiasts! Get ready to enhance your Excel game with regex modes for XLOOKUP and XMATCH. Whether you’re pulling specific data or locating exact matches, these updates help parse text more easily.
Jake Armstrong, Product Manager on the Excel team, breaks it all down for you in our latest blog: New regex modes for XLOOKUP and XMATCH
Thanks!
Perry Sjogren
Microsoft 365 Insider Community Manager
Become a Microsoft 365 Insider and gain exclusive access to new features and help shape the future of Microsoft 365. Join Now: Windows | Mac | iOS | Android
Microsoft 365 Insiders,
Great news for Excel enthusiasts! Get ready to enhance your Excel game with regex modes for XLOOKUP and XMATCH. Whether you’re pulling specific data or locating exact matches, these updates help parse text more easily.
Jake Armstrong, Product Manager on the Excel team, breaks it all down for you in our latest blog: New regex modes for XLOOKUP and XMATCH
Thanks!
Perry Sjogren
Microsoft 365 Insider Community Manager
Become a Microsoft 365 Insider and gain exclusive access to new features and help shape the future of Microsoft 365. Join Now: Windows | Mac | iOS | Android Read More
New Blog | Azure Firewall and WAF integrations in Microsoft Copilot for Security
By Shabaz Shaik
Azure Firewall and WAF are critical security services that many Microsoft Azure customers use to protect their network and applications from threats and attacks. Azure Firewall is a fully managed, cloud-native network security service that safeguards your Azure resources. It ensures high availability and scalability while filtering both inbound and outbound traffic, catching threats and only allowing legitimate traffic. Azure WAF is a cloud-native service that protects your web applications from common web-hacking techniques such as SQL injection and cross-site scripting. It offers centralized protection for web applications hosted behind Azure Application Gateway and Azure Front Door.
The Azure Firewall integration in Copilot for Security enables analysts to perform detailed investigations of malicious traffic intercepted by the IDPS [Intrusion Detection and Prevention System] feature of their firewalls across their entire fleet. Analysts can use natural language queries in the Copilot for Security standalone experience for threat investigation. With the Azure WAF integration, security and IT teams can operate more efficiently, focusing on high-value tasks. Copilot summarizes data and generates in-depth contextual insights into the WAF threat landscape. Both integrations simplify complex tasks, allowing analysts to ask questions in natural language instead of writing complex KQL queries
Read the full post here: Azure Firewall and WAF integrations in Microsoft Copilot for Security
By Shabaz Shaik
Azure Firewall and WAF are critical security services that many Microsoft Azure customers use to protect their network and applications from threats and attacks. Azure Firewall is a fully managed, cloud-native network security service that safeguards your Azure resources. It ensures high availability and scalability while filtering both inbound and outbound traffic, catching threats and only allowing legitimate traffic. Azure WAF is a cloud-native service that protects your web applications from common web-hacking techniques such as SQL injection and cross-site scripting. It offers centralized protection for web applications hosted behind Azure Application Gateway and Azure Front Door.
The Azure Firewall integration in Copilot for Security enables analysts to perform detailed investigations of malicious traffic intercepted by the IDPS [Intrusion Detection and Prevention System] feature of their firewalls across their entire fleet. Analysts can use natural language queries in the Copilot for Security standalone experience for threat investigation. With the Azure WAF integration, security and IT teams can operate more efficiently, focusing on high-value tasks. Copilot summarizes data and generates in-depth contextual insights into the WAF threat landscape. Both integrations simplify complex tasks, allowing analysts to ask questions in natural language instead of writing complex KQL queries
Read the full post here: Azure Firewall and WAF integrations in Microsoft Copilot for Security Read More
New Blog | Using Defender XDR Portal to hunt for Kubernetes security issues
By singhabhi
As we saw in previous article, the binary drift alert gives you information about where the activity happened like the object namespace, image, cluster, etc.
This might or might not be enough information for you to act. Say, if you want to identify “how” this drift came to be for example, did a user logged on to container and downloaded the said binary. To supplement the information provided by the alert we can then use Defender XDR portal (https://learn.microsoft.com/en-us/defender-xdr/microsoft-365-defender-portal)
Harnessing the power of the Microsoft Ecosystem
If you are an E5 customer, your security teams most likely are very familiar with Advance Hunting on security.microsoft.com portal. Here we will extend that hunting capability to add context to your Kubernetes alerts. This is a huge time saver and cost advantage for you as you don’t need to teach your Red Team or SOC analysts Level 400 Kubernetes concepts. To jump start your Kubernetes hunting, you can leverage the developer knowledge of your Platform teams to provide most common Kubernetes actions like exec (access to a container), debug (access to node). The hunting team can then leverage these in the hunting queries in a data structure and format they already know using KQL.
Read the full post here: Using Defender XDR Portal to hunt for Kubernetes security issues
By singhabhi
As we saw in previous article, the binary drift alert gives you information about where the activity happened like the object namespace, image, cluster, etc.
This might or might not be enough information for you to act. Say, if you want to identify “how” this drift came to be for example, did a user logged on to container and downloaded the said binary. To supplement the information provided by the alert we can then use Defender XDR portal (https://learn.microsoft.com/en-us/defender-xdr/microsoft-365-defender-portal)
Harnessing the power of the Microsoft Ecosystem
If you are an E5 customer, your security teams most likely are very familiar with Advance Hunting on security.microsoft.com portal. Here we will extend that hunting capability to add context to your Kubernetes alerts. This is a huge time saver and cost advantage for you as you don’t need to teach your Red Team or SOC analysts Level 400 Kubernetes concepts. To jump start your Kubernetes hunting, you can leverage the developer knowledge of your Platform teams to provide most common Kubernetes actions like exec (access to a container), debug (access to node). The hunting team can then leverage these in the hunting queries in a data structure and format they already know using KQL.
Read the full post here: Using Defender XDR Portal to hunt for Kubernetes security issues
How Microsoft deploys foundation models
The foundation models that power Microsoft’s AI experiences are evolving constantly, becoming more powerful and efficient. In recent months, we’ve received questions from customers about which foundation model or models Microsoft deploys in its Copilot for Microsoft 365 service.
Today, Copilot for Microsoft 365 uses a combination of foundation models, allowing us to match the specific needs of each feature – e.g., speed, creativity – to the right model.
We are consistently evaluating and aligning the capabilities of both existing and new foundation models. When we can demonstrate that any model enhances the capabilities of Copilot for Microsoft 365, we will make necessary changes to incorporate that model and improve our customers’ experiences.
Regardless of the specific foundation model used, we never use your customer data to train those models. Your data is encrypted while it is in transit and at rest and is processed in alignment with the same terms and conditions that apply to all the content your organization generates in our Microsoft 365 services.
Microsoft Tech Community – Latest Blogs –Read More
Announcing SharePoint Embedded Fall Tour Events Schedule
The SharePoint Embedded product team is coming to New York City and London in September! Come join us for an all-day event to learn how SharePoint Embedded can deliver Copilot, Collaboration, Compliance, and Core Enterprise Storage for your document centric apps.
Specifically, you’ll have the opportunity to do the following:
Learn about SharePoint Embedded, a new way to build file and document centric apps.
Get hands-on coding experience with this new technology and learn how to build your own custom app.
Take a deep dive into critical features, like compliance, collaboration and copilot.
Hear from others who have implemented SharePoint Embedded solutions.
Get insight into the SharePoint Embedded roadmap
New York City, US
Date: Thursday, September 12th, 9AM-7PM (times are approximate, including social hour)
Where: Microsoft Offices NYC Times Square
London, UK
Date: Thursday, September 26th, 9AM-7PM (times are approximate, including social hour)
Where: Central London, UK (Exact location TBD)
RSVP Details (Please note that this event is only open to certain countries and the following will not be accepted: Russia, Belarus)
21+, free event, no registration fees
First come, first served (limited seats)
1 RSVP = 1 person
NDA required (if your company does not have an NDA on record, one will be sent)
NDA must be signed to attend event
Event will be IN PERSON ONLY and will not be recorded
Bring your own device for coding portions (tablets and smartphones will not work)
To register for one or more of these events visit Microsoft SharePoint Embedded for Enterprise Apps (office.com).
Microsoft Tech Community – Latest Blogs –Read More
undefined function or variable: docopt
Undefined function or variable ‘docopt’.
Error in install_SplitLab (line 384)
[doccmd,options,docpath] = docoptUndefined function or variable ‘docopt’.
Error in install_SplitLab (line 384)
[doccmd,options,docpath] = docopt Undefined function or variable ‘docopt’.
Error in install_SplitLab (line 384)
[doccmd,options,docpath] = docopt splitlab1.2.1 MATLAB Answers — New Questions
Methods of Detecting and Removing Protrusions in Image
Is there any way to remove only the red shaded area of an image like the one below?
The data is a binary image and is binarized.
The image we are recognizing is basically a figure like the one on the left, so we can use bwareafilt to extract the maximum structure.
However, sometimes we get images like the one on the right. It does not mean that every time they are attached.
It would be best if we could set a threshold (if they are too close together, we recognize them as one), since the degree of attachment of the two objects varies.
We would appreciate it if you could let us know.Is there any way to remove only the red shaded area of an image like the one below?
The data is a binary image and is binarized.
The image we are recognizing is basically a figure like the one on the left, so we can use bwareafilt to extract the maximum structure.
However, sometimes we get images like the one on the right. It does not mean that every time they are attached.
It would be best if we could set a threshold (if they are too close together, we recognize them as one), since the degree of attachment of the two objects varies.
We would appreciate it if you could let us know. Is there any way to remove only the red shaded area of an image like the one below?
The data is a binary image and is binarized.
The image we are recognizing is basically a figure like the one on the left, so we can use bwareafilt to extract the maximum structure.
However, sometimes we get images like the one on the right. It does not mean that every time they are attached.
It would be best if we could set a threshold (if they are too close together, we recognize them as one), since the degree of attachment of the two objects varies.
We would appreciate it if you could let us know. image analysis, image segmentation MATLAB Answers — New Questions
How to create dynamic options in system object block mask parameters
I want to make the dropdown content of one system object parameter based on the value of another parameter. In other words, Timer 1 may support options A, B and C, while Timer 2 would only support options A and B. I can do this in a standard subsystem block mask by modifying the option parameter dropdown content on the callback for the timer parameter. MATLAB system objects only seem to support defining dropdown content for their parameters statically. Is this possible?I want to make the dropdown content of one system object parameter based on the value of another parameter. In other words, Timer 1 may support options A, B and C, while Timer 2 would only support options A and B. I can do this in a standard subsystem block mask by modifying the option parameter dropdown content on the callback for the timer parameter. MATLAB system objects only seem to support defining dropdown content for their parameters statically. Is this possible? I want to make the dropdown content of one system object parameter based on the value of another parameter. In other words, Timer 1 may support options A, B and C, while Timer 2 would only support options A and B. I can do this in a standard subsystem block mask by modifying the option parameter dropdown content on the callback for the timer parameter. MATLAB system objects only seem to support defining dropdown content for their parameters statically. Is this possible? matlab system objects MATLAB Answers — New Questions
Error when inviting the bot to a meeting: Server Internal Error. DiagCode: 500#7117.@
We have created a solution that invites the Microsoft Teams media bot to an online teams meeting. Unfortunately the bot does not always seem to join the call.
In these cases;
We only receive the “Establishing…” callback, but then the call is never actually transfered to “Established”. After waiting for about 60 seconds. We receive the “Terminated” signal, without the call ever reaching the “established” state.
Along with this terminated callback, we also receive the following error code (for which we can not find any documentation..)
Server Internal Error. DiagCode: 500#7117.@
The steps and conditions of inviting the bot are always the same.
1. Create New meeting
2. Invite bot to meeting
3. 50% (sometimes lower, sometimes higher) chance bot will join
A workaround I found was, inviting the bot multiple times. Which sometimes work, but the bot is then kicked subsequently when the “Terminated” callback is sent our way.
await this.Client.Calls().AddAsync(joinParams).ConfigureAwait(false);
This is the code to trigger the invitation of the bot, as per the microsoft sample. (docs)
Can someone please shed some light on the meaning of this error code? I have not found any patterns in its occurrence and our calls to the service do not change. The only difference likely being a different meetingId.
Server Internal Error. DiagCode: 500#7117.@
We have created a solution that invites the Microsoft Teams media bot to an online teams meeting. Unfortunately the bot does not always seem to join the call. In these cases;We only receive the “Establishing…” callback, but then the call is never actually transfered to “Established”. After waiting for about 60 seconds. We receive the “Terminated” signal, without the call ever reaching the “established” state.Along with this terminated callback, we also receive the following error code (for which we can not find any documentation..)Server Internal Error. DiagCode: 500#7117.@The steps and conditions of inviting the bot are always the same.1. Create New meeting2. Invite bot to meeting3. 50% (sometimes lower, sometimes higher) chance bot will joinA workaround I found was, inviting the bot multiple times. Which sometimes work, but the bot is then kicked subsequently when the “Terminated” callback is sent our way. await this.Client.Calls().AddAsync(joinParams).ConfigureAwait(false); This is the code to trigger the invitation of the bot, as per the microsoft sample. (docs)Can someone please shed some light on the meaning of this error code? I have not found any patterns in its occurrence and our calls to the service do not change. The only difference likely being a different meetingId. Server Internal Error. DiagCode: 500#7117.@ Read More
Why doesn’t Copilot offer the options for GPT-4 and GPT-4 turbo anymore?
Why doesn’t Copilot offer the options for GPT-4 and GPT-4 turbo anymore? Now that Copilot no longer provides the choice of GPT-4, it’s completely not worth paying for!
I can’t chat with the old creative model anymore. It was the reason I subscribed in the first place.
If you no longer offer the GPT-4 model, and instead are using a garbage distilled model GPT-4 turbo to scam money, then I will not continue to pay for and use your Copilot Pro!
Why doesn’t Copilot offer the options for GPT-4 and GPT-4 turbo anymore? Now that Copilot no longer provides the choice of GPT-4, it’s completely not worth paying for! I can’t chat with the old creative model anymore. It was the reason I subscribed in the first place. If you no longer offer the GPT-4 model, and instead are using a garbage distilled model GPT-4 turbo to scam money, then I will not continue to pay for and use your Copilot Pro! Read More
table references for drop down
I have created table1 on tab Empl By Dept with headers for Employee, supervisor and dept. I am using a drop down list on another tab of the same workbook to select data from this table. Per excel help when choosing my source for this drop down it should put the table name references when I click on the cell below the header name employee. instead it puts the cell reference names ie…a2. I have tried several variations shown in help trying to get the syntax right to pull this data. I am wanting the drop down choices to automatically change if the table info changes. Using table references is supposed to do this. help….
I have created table1 on tab Empl By Dept with headers for Employee, supervisor and dept. I am using a drop down list on another tab of the same workbook to select data from this table. Per excel help when choosing my source for this drop down it should put the table name references when I click on the cell below the header name employee. instead it puts the cell reference names ie…a2. I have tried several variations shown in help trying to get the syntax right to pull this data. I am wanting the drop down choices to automatically change if the table info changes. Using table references is supposed to do this. help…. Read More
Single Power Automate Flow that supports Multiple Booking Page
In Microsoft Bookings with Power Automate can we create a single flow that supports multiple booking pages? It seems like a trigger flow will only support a single booking page. Is this possible and how?
Also, I ChatGPT the question and it thinks this is possible using a “Single Flow with Conditional Logic.” I am not familiar with that so any suggestion would help.
Thank you
Ralph
In Microsoft Bookings with Power Automate can we create a single flow that supports multiple booking pages? It seems like a trigger flow will only support a single booking page. Is this possible and how?Also, I ChatGPT the question and it thinks this is possible using a “Single Flow with Conditional Logic.” I am not familiar with that so any suggestion would help. Thank you Ralph Read More
Table from JSON object
I get the following JSON response from an API call
[
[
{
“field”: “ID”,
“value”: 29
},
{
“field”: “Created at”,
“value”: “06/08/2024 15:18”
},
{
“field”: “Created by”,
“value”: “Amanda”
},
{
“field”: “Job Card Status”,
“value”: “Final”
},
{
“field”: “Sales Amount”,
“value”: “2500”
}
],
[
{
“field”: “ID”,
“value”: 28
},
{
“field”: “Created at”,
“value”: “06/08/2024 15:16”
},
{
“field”: “Created by”,
“value”: “Amanda”
},
{
“field”: “Job Card Status”,
“value”: “Final”
},
{
“field”: “Sales Amount”,
“value”: “15400”
}
]
]
and need to create a table in Power Query for further processing. The table will have a column Date (from date created) and a column ‘Sales amount’ from Sales amount. No idea how do I approach this?
I get the following JSON response from an API call [
[
{
“field”: “ID”,
“value”: 29
},
{
“field”: “Created at”,
“value”: “06/08/2024 15:18”
},
{
“field”: “Created by”,
“value”: “Amanda”
},
{
“field”: “Job Card Status”,
“value”: “Final”
},
{
“field”: “Sales Amount”,
“value”: “2500”
}
],
[
{
“field”: “ID”,
“value”: 28
},
{
“field”: “Created at”,
“value”: “06/08/2024 15:16”
},
{
“field”: “Created by”,
“value”: “Amanda”
},
{
“field”: “Job Card Status”,
“value”: “Final”
},
{
“field”: “Sales Amount”,
“value”: “15400”
}
]
] and need to create a table in Power Query for further processing. The table will have a column Date (from date created) and a column ‘Sales amount’ from Sales amount. No idea how do I approach this? Read More
Pivot table with variable database
Hi All,
I am trying to generate a dynamic table with a variable database using the OFFSET formula, however after performing the entire procedure I see that it still takes three rows with cells without data. I have tried to delete everything thinking that there might be some hidden data, but the problem continues.
Does anyone know what could be the cause?.
The formula is: DESREF($B$5;0;0;CONTARA($B:$B);CONTARA($5:$5))
Thanks¡.
Hi All, I am trying to generate a dynamic table with a variable database using the OFFSET formula, however after performing the entire procedure I see that it still takes three rows with cells without data. I have tried to delete everything thinking that there might be some hidden data, but the problem continues.Does anyone know what could be the cause?. The formula is: DESREF($B$5;0;0;CONTARA($B:$B);CONTARA($5:$5)) Thanks¡. Read More
Quick Steps – New email
Hello!
One thing that is driving me insane with this new Outlook is that it’s missing a lot of great functionality that the last version had. One example is Quick Steps doesn’t have the ‘new email’ option so that I can send to a group of contacts by adding all of their emails and saving. The Groups option only applies to contacts within your organization, which doesn’t help me because I need to send to outside contacts.
How do I do this without adding them as contacts?
Hello! One thing that is driving me insane with this new Outlook is that it’s missing a lot of great functionality that the last version had. One example is Quick Steps doesn’t have the ‘new email’ option so that I can send to a group of contacts by adding all of their emails and saving. The Groups option only applies to contacts within your organization, which doesn’t help me because I need to send to outside contacts. How do I do this without adding them as contacts? Read More
Integrating Microsoft Project Desktop Client and Project for the web
Hello Mates,
In my corporation, we are shifting from using the desktop client for each project separately to using the web for all the projects, programs and portfolios we manage.
I am searching for a way to integrate the desktop client with the project for the web to avoid importing the .mpp file each time the Project managers make changes to plans in the desktop client and delete the previous project for the web plan.
In a nutshell,
1-I am searching for a way to integrate desktop client and project for the web.
2- The availability to import .mpp files to the same plan in project for the web and track the changes automatically.
I really appreciate any help you can provide.
Hello Mates, In my corporation, we are shifting from using the desktop client for each project separately to using the web for all the projects, programs and portfolios we manage. I am searching for a way to integrate the desktop client with the project for the web to avoid importing the .mpp file each time the Project managers make changes to plans in the desktop client and delete the previous project for the web plan. In a nutshell,1-I am searching for a way to integrate desktop client and project for the web.2- The availability to import .mpp files to the same plan in project for the web and track the changes automatically. I really appreciate any help you can provide. Read More