Month: October 2024
having the same problem about the arrays
daily_savings=zeros(1505,1);%initial saving vectors
daily_earnings=zeros(1505,1);%initial earning vectors
% Loop through each day to calculate savings and earnings % total days is 1505 (Date from(06/04/20 to 19/05/24))
for i = 0:1504 % days1 starts from 0 so 0:1504
% Calculate daily savings
daily_savings(i + 1) = O_Consumption(i + 1).*Cost;
% Calculate daily earnings
if i <= 1212 % Up to July 31, 2023 (day index 1212)
daily_earnings(i + 1) = energy_out(i + 1).*Feed(i + 1);
else % From August 1, 2023 onwards
if e_out(i + 1) < 10
daily_earnings(i + 1) = e_out(i + 1).*Feed(i + 1);
else
daily_earnings(i + 1) = ((e_out(i + 1) – 10) / 100) + 0.88;
end
end
above is the codedaily_savings=zeros(1505,1);%initial saving vectors
daily_earnings=zeros(1505,1);%initial earning vectors
% Loop through each day to calculate savings and earnings % total days is 1505 (Date from(06/04/20 to 19/05/24))
for i = 0:1504 % days1 starts from 0 so 0:1504
% Calculate daily savings
daily_savings(i + 1) = O_Consumption(i + 1).*Cost;
% Calculate daily earnings
if i <= 1212 % Up to July 31, 2023 (day index 1212)
daily_earnings(i + 1) = energy_out(i + 1).*Feed(i + 1);
else % From August 1, 2023 onwards
if e_out(i + 1) < 10
daily_earnings(i + 1) = e_out(i + 1).*Feed(i + 1);
else
daily_earnings(i + 1) = ((e_out(i + 1) – 10) / 100) + 0.88;
end
end
above is the code daily_savings=zeros(1505,1);%initial saving vectors
daily_earnings=zeros(1505,1);%initial earning vectors
% Loop through each day to calculate savings and earnings % total days is 1505 (Date from(06/04/20 to 19/05/24))
for i = 0:1504 % days1 starts from 0 so 0:1504
% Calculate daily savings
daily_savings(i + 1) = O_Consumption(i + 1).*Cost;
% Calculate daily earnings
if i <= 1212 % Up to July 31, 2023 (day index 1212)
daily_earnings(i + 1) = energy_out(i + 1).*Feed(i + 1);
else % From August 1, 2023 onwards
if e_out(i + 1) < 10
daily_earnings(i + 1) = e_out(i + 1).*Feed(i + 1);
else
daily_earnings(i + 1) = ((e_out(i + 1) – 10) / 100) + 0.88;
end
end
above is the code array, error MATLAB Answers — New Questions
Trouble in reading .tdms file
Data1.tdms
I tried reading this tdms file, however it shows entries upto 1500 sample size only for a particular channel. I would like to have a table of all channels with their row wise values so that I can access any channel. Additionally, the same tdms file I tried in python entries shows upto 80k rows for a single channel. Is the file size too much to handle in MATLAB, why it is not showing all data and plotting the same for a single channel. Further, can I import this for signal processing toolbox in MATLAB.Data1.tdms
I tried reading this tdms file, however it shows entries upto 1500 sample size only for a particular channel. I would like to have a table of all channels with their row wise values so that I can access any channel. Additionally, the same tdms file I tried in python entries shows upto 80k rows for a single channel. Is the file size too much to handle in MATLAB, why it is not showing all data and plotting the same for a single channel. Further, can I import this for signal processing toolbox in MATLAB. Data1.tdms
I tried reading this tdms file, however it shows entries upto 1500 sample size only for a particular channel. I would like to have a table of all channels with their row wise values so that I can access any channel. Additionally, the same tdms file I tried in python entries shows upto 80k rows for a single channel. Is the file size too much to handle in MATLAB, why it is not showing all data and plotting the same for a single channel. Further, can I import this for signal processing toolbox in MATLAB. tdms, signal processing MATLAB Answers — New Questions
Unable to Sign in to sync on Ubuntu 24.04 LTS
I’m facing an issue where since few days, I’m unable to sign in again to MS Edge on Linux 24.04. I always got the same error, even when trying to add a new profile with a different account or when trying to create a new account. It was working before without any issue.
I’m facing an issue where since few days, I’m unable to sign in again to MS Edge on Linux 24.04. I always got the same error, even when trying to add a new profile with a different account or when trying to create a new account. It was working before without any issue. Read More
Excel changes dates to numbers
In excel suddenly al the dates are formatted to serial numbers. the settings are al checked and are noted as “date”. When selecting the cell is shows the correct date, but in overview you only see the serial number. Any suggestions to go back to normal viewing of the dates?
In excel suddenly al the dates are formatted to serial numbers. the settings are al checked and are noted as “date”. When selecting the cell is shows the correct date, but in overview you only see the serial number. Any suggestions to go back to normal viewing of the dates? Read More
Recorded Macros Need To Be Updated With New Rows Added
Initially I had only 500 row entries for which I recorded the macro as per the following.1. Filter Column C Revision with blanks2. Filter Column E INITIAL PLAN SUBMITTAL DATE, the cut-off date is every week that is every week Friday Ex 4th Sep, 11th Sep, 18th Sep, 25th Sep3. After running the Macro with the cut-off date as 30th Sep, got the count as 1264. As the number assigned for this activity is, updated “6” in the Column A for the 126 docs, which is the resultNow with the latest report, the number of rows have increased to 2809.However, when I run the Macro again, it takes into account only 500 rows.How to get the count for the total 2809 rows.
Initially I had only 500 row entries for which I recorded the macro as per the following.1. Filter Column C Revision with blanks2. Filter Column E INITIAL PLAN SUBMITTAL DATE, the cut-off date is every week that is every week Friday Ex 4th Sep, 11th Sep, 18th Sep, 25th Sep3. After running the Macro with the cut-off date as 30th Sep, got the count as 1264. As the number assigned for this activity is, updated “6” in the Column A for the 126 docs, which is the resultNow with the latest report, the number of rows have increased to 2809.However, when I run the Macro again, it takes into account only 500 rows.How to get the count for the total 2809 rows. Read More
MS Teams App Personal Tab not loading websites
Hello,
I created a new MS Teams App with a personal tab. The only thing this App should do is loading a Website. But the screen is always blank when starting the app.
I use “https://www.google.de/” for example as content url and website url.
In the web version of teams it shows the message, that Google blocked it, so I guess this has something to do with blocked iFrames? If so, most Websites wouldn’t be able to load in an MS Teams App. What can I do to fix this problem for a simple Google Website for example?
Any workarounds or tricks, how the Google Website is loading in a personal App?
Best regards
Hello, I created a new MS Teams App with a personal tab. The only thing this App should do is loading a Website. But the screen is always blank when starting the app. I use “https://www.google.de/” for example as content url and website url. In the web version of teams it shows the message, that Google blocked it, so I guess this has something to do with blocked iFrames? If so, most Websites wouldn’t be able to load in an MS Teams App. What can I do to fix this problem for a simple Google Website for example?Any workarounds or tricks, how the Google Website is loading in a personal App? Best regards Read More
Orchard Core 2.0 released
Orchard Core is an open-source, modular, multi-tenant, and community-driven application framework built with ASP.NET Core, and a content management system (CMS) built on top of that framework. Its vision is to create shared components for building ASP.NET applications and specific applications that leverage these components to meet the needs of end-users, content administrators, and developers.
The community recently released the second major version of Orchard Core with several new features and additions! This release is packed with performance improvements, bug fixes, and a variety of enhancements that make it our best version yet. Whether you’re building a new project or maintaining an existing one, Orchard Core 2.0 brings stability and power to your fingertips.
In this release, there’s a new “Azure AI Search” module, designed to empower you in the administration of Azure AI Search indices. When enabled with the “Search” module, it facilitates frontend full-text search capabilities through Azure AI Search.
The Microsoft Azure Media and Amazon S3 Media modules have new features for replacing the default PhysicalFileSystemCache of ImageSharp that stores resized images in the local App_Data folder. Instead, you can now use Azure Blob Storage with the Azure Media ImageSharp Image Cache feature (that utilizes AzureBlobStorageImageCache), and AWS S3 with the Amazon Media ImageSharp Image Cache feature (that utilizes AWSS3StorageCache). Depending on your use case, this can provide various advantages. And we have a lot more to cover! Here are all the details of the release: https://docs.orchardcore.net/en/latest/releases/2.0.0/.
Orchard Core is available as a NuGet package which you can easily add to your ASP.NET Core solution. Here’s how you can get started with Orchard Core: https://docs.orchardcore.net/en/latest/docs/getting-started/.
Orchard Core is an open-source, modular, multi-tenant, and community-driven application framework built with ASP.NET Core, and a content management system (CMS) built on top of that framework. Its vision is to create shared components for building ASP.NET applications and specific applications that leverage these components to meet the needs of end-users, content administrators, and developers. The community recently released the second major version of Orchard Core with several new features and additions! This release is packed with performance improvements, bug fixes, and a variety of enhancements that make it our best version yet. Whether you’re building a new project or maintaining an existing one, Orchard Core 2.0 brings stability and power to your fingertips. In this release, there’s a new “Azure AI Search” module, designed to empower you in the administration of Azure AI Search indices. When enabled with the “Search” module, it facilitates frontend full-text search capabilities through Azure AI Search. The Microsoft Azure Media and Amazon S3 Media modules have new features for replacing the default PhysicalFileSystemCache of ImageSharp that stores resized images in the local App_Data folder. Instead, you can now use Azure Blob Storage with the Azure Media ImageSharp Image Cache feature (that utilizes AzureBlobStorageImageCache), and AWS S3 with the Amazon Media ImageSharp Image Cache feature (that utilizes AWSS3StorageCache). Depending on your use case, this can provide various advantages. And we have a lot more to cover! Here are all the details of the release: https://docs.orchardcore.net/en/latest/releases/2.0.0/. Orchard Core is available as a NuGet package which you can easily add to your ASP.NET Core solution. Here’s how you can get started with Orchard Core: https://docs.orchardcore.net/en/latest/docs/getting-started/. Read More
Build issues for custom target file in 2024b verions. Error in “emmintrin.h”
Hi, We are using a custom target file. The model builds without issues in 2016b version. IF the same model is exported to 2024b, it has build issues. Same tmf / tlc file is used between 2016b and 2024b.
fatal error: could not open source file "emmintrin.h"
Model Build Reason Status Build Duration
===================================================================================================================================
sktSAST Information cache folder or artifacts were missing. Failed to build. For more information, see build log. 0dHi, We are using a custom target file. The model builds without issues in 2016b version. IF the same model is exported to 2024b, it has build issues. Same tmf / tlc file is used between 2016b and 2024b.
fatal error: could not open source file "emmintrin.h"
Model Build Reason Status Build Duration
===================================================================================================================================
sktSAST Information cache folder or artifacts were missing. Failed to build. For more information, see build log. 0d Hi, We are using a custom target file. The model builds without issues in 2016b version. IF the same model is exported to 2024b, it has build issues. Same tmf / tlc file is used between 2016b and 2024b.
fatal error: could not open source file "emmintrin.h"
Model Build Reason Status Build Duration
===================================================================================================================================
sktSAST Information cache folder or artifacts were missing. Failed to build. For more information, see build log. 0d #2024b, #simulink, #emmintrin MATLAB Answers — New Questions
Run MATLAB Test Suite from Azure Pipeline.yml
Dear community,
I would like to run test suites from an azure-pipelines.yml. Unfortunately I lack the correct commands to do so and whenever the pipeline reaches the step to run the testmanager I receive an error, that ‘import’ is not recognized as internal or external command (see below, unfortunately I cannot add it as code here as it is not matlab code). A link for the MATLAB documentation regarding this topic is found here: MATLAB – Visual Studio Marketplace. Thus far I did not find any related topic on this platform. I am sorry that the .yml code cannot be posted in a code block as well. Maybe you have some suggestions/ corrections that can help here?
– task: InstallMATLAB@1
inputs:
release: R2024a
products: >
Simulink
Simulink_Test
Code_Coverage
displayName: Install MATLAB R2024a + Simulink Toolboxes
[…some MATLAB server connection steps…]
– script: |
echo "Initializing MATLAB project"
matlab -batch "run(‘model/init_my_model.m’)"
workingDirectory: ‘$(Pipeline.Workspace)/self’
displayName: ‘Initialize MATLAB Project’
– script: |
echo "Setting up test environment"
matlab -batch "run(‘model/05_etc/my_test_environment.m’)"
workingDirectory: ‘$(Pipeline.Workspace)/self’
displayName: ‘Set Up Test Environment’
# This is the step that causes trouble
– task: RunMATLABCommand@1
inputs:
command: |
% Run MATLAB tests and generate PDF report
import matlab.unittest.TestSuite;
import matlab.unittest.TestRunner;
import matlab.unittest.plugins.TestReportPlugin;
suite = TestSuite.fromFile(‘model/05_etc/test_manager.mldatx’);
runner = TestRunner.withTextOutput;
pdfFile = ‘model/05_etc/sw_mil_report.pdf’;
runner.addPlugin(TestReportPlugin.producingPDF(pdfFile));
result = runner.run(suite);
displayName: ‘Run MATLAB Test Manager’
– script: |
echo "Checking if PDF report exists"
if exist "model/05_etc/sw_mil_report.pdf" (
echo "PDF report found. Moving to artifact staging directory."
mkdir $(Build.ArtifactStagingDirectory)/test_results
move "model/05_etc/sw_mil_report.pdf" $(Build.ArtifactStagingDirectory)/test_results/
) else (
echo "PDF report not found."
exit 1
)
workingDirectory: ‘$(Pipeline.Workspace)/self’
displayName: ‘Find and Save Test Results PDF’
– task: PublishPipelineArtifact@1
inputs:
targetPath: ‘$(Build.ArtifactStagingDirectory)/test_results’
artifact: ‘test_results’
displayName: ‘Publish Test Results as Artifact’
——————————————
Here is the error from the pipeline run:
"Running MATLAB tests and generating PDF report"
import matlab.unittest.TestSuite; "
|Dear community,
I would like to run test suites from an azure-pipelines.yml. Unfortunately I lack the correct commands to do so and whenever the pipeline reaches the step to run the testmanager I receive an error, that ‘import’ is not recognized as internal or external command (see below, unfortunately I cannot add it as code here as it is not matlab code). A link for the MATLAB documentation regarding this topic is found here: MATLAB – Visual Studio Marketplace. Thus far I did not find any related topic on this platform. I am sorry that the .yml code cannot be posted in a code block as well. Maybe you have some suggestions/ corrections that can help here?
– task: InstallMATLAB@1
inputs:
release: R2024a
products: >
Simulink
Simulink_Test
Code_Coverage
displayName: Install MATLAB R2024a + Simulink Toolboxes
[…some MATLAB server connection steps…]
– script: |
echo "Initializing MATLAB project"
matlab -batch "run(‘model/init_my_model.m’)"
workingDirectory: ‘$(Pipeline.Workspace)/self’
displayName: ‘Initialize MATLAB Project’
– script: |
echo "Setting up test environment"
matlab -batch "run(‘model/05_etc/my_test_environment.m’)"
workingDirectory: ‘$(Pipeline.Workspace)/self’
displayName: ‘Set Up Test Environment’
# This is the step that causes trouble
– task: RunMATLABCommand@1
inputs:
command: |
% Run MATLAB tests and generate PDF report
import matlab.unittest.TestSuite;
import matlab.unittest.TestRunner;
import matlab.unittest.plugins.TestReportPlugin;
suite = TestSuite.fromFile(‘model/05_etc/test_manager.mldatx’);
runner = TestRunner.withTextOutput;
pdfFile = ‘model/05_etc/sw_mil_report.pdf’;
runner.addPlugin(TestReportPlugin.producingPDF(pdfFile));
result = runner.run(suite);
displayName: ‘Run MATLAB Test Manager’
– script: |
echo "Checking if PDF report exists"
if exist "model/05_etc/sw_mil_report.pdf" (
echo "PDF report found. Moving to artifact staging directory."
mkdir $(Build.ArtifactStagingDirectory)/test_results
move "model/05_etc/sw_mil_report.pdf" $(Build.ArtifactStagingDirectory)/test_results/
) else (
echo "PDF report not found."
exit 1
)
workingDirectory: ‘$(Pipeline.Workspace)/self’
displayName: ‘Find and Save Test Results PDF’
– task: PublishPipelineArtifact@1
inputs:
targetPath: ‘$(Build.ArtifactStagingDirectory)/test_results’
artifact: ‘test_results’
displayName: ‘Publish Test Results as Artifact’
——————————————
Here is the error from the pipeline run:
"Running MATLAB tests and generating PDF report"
import matlab.unittest.TestSuite; "
| Dear community,
I would like to run test suites from an azure-pipelines.yml. Unfortunately I lack the correct commands to do so and whenever the pipeline reaches the step to run the testmanager I receive an error, that ‘import’ is not recognized as internal or external command (see below, unfortunately I cannot add it as code here as it is not matlab code). A link for the MATLAB documentation regarding this topic is found here: MATLAB – Visual Studio Marketplace. Thus far I did not find any related topic on this platform. I am sorry that the .yml code cannot be posted in a code block as well. Maybe you have some suggestions/ corrections that can help here?
– task: InstallMATLAB@1
inputs:
release: R2024a
products: >
Simulink
Simulink_Test
Code_Coverage
displayName: Install MATLAB R2024a + Simulink Toolboxes
[…some MATLAB server connection steps…]
– script: |
echo "Initializing MATLAB project"
matlab -batch "run(‘model/init_my_model.m’)"
workingDirectory: ‘$(Pipeline.Workspace)/self’
displayName: ‘Initialize MATLAB Project’
– script: |
echo "Setting up test environment"
matlab -batch "run(‘model/05_etc/my_test_environment.m’)"
workingDirectory: ‘$(Pipeline.Workspace)/self’
displayName: ‘Set Up Test Environment’
# This is the step that causes trouble
– task: RunMATLABCommand@1
inputs:
command: |
% Run MATLAB tests and generate PDF report
import matlab.unittest.TestSuite;
import matlab.unittest.TestRunner;
import matlab.unittest.plugins.TestReportPlugin;
suite = TestSuite.fromFile(‘model/05_etc/test_manager.mldatx’);
runner = TestRunner.withTextOutput;
pdfFile = ‘model/05_etc/sw_mil_report.pdf’;
runner.addPlugin(TestReportPlugin.producingPDF(pdfFile));
result = runner.run(suite);
displayName: ‘Run MATLAB Test Manager’
– script: |
echo "Checking if PDF report exists"
if exist "model/05_etc/sw_mil_report.pdf" (
echo "PDF report found. Moving to artifact staging directory."
mkdir $(Build.ArtifactStagingDirectory)/test_results
move "model/05_etc/sw_mil_report.pdf" $(Build.ArtifactStagingDirectory)/test_results/
) else (
echo "PDF report not found."
exit 1
)
workingDirectory: ‘$(Pipeline.Workspace)/self’
displayName: ‘Find and Save Test Results PDF’
– task: PublishPipelineArtifact@1
inputs:
targetPath: ‘$(Build.ArtifactStagingDirectory)/test_results’
artifact: ‘test_results’
displayName: ‘Publish Test Results as Artifact’
——————————————
Here is the error from the pipeline run:
"Running MATLAB tests and generating PDF report"
import matlab.unittest.TestSuite; "
| matlab, simulink, azure, ci/cd, test, pipeline MATLAB Answers — New Questions
Question Regarding ‘pcfromdepth’ Function Example
Hello,
I have been working with the example code provided in the ‘doc pcfromdepth’ documentation in MATLAB. I used the example color image ‘sampleImage.png’ along with depth images extracted using the ‘MiDaS’ and ‘Depthanything v2’ models to generate the point cloud. However, the point cloud I obtained was inaccurate compared to the result shown in the example.
I am curious about how the DepthImage used in the MATLAB example was extracted, and how the camera parameters (focalLength, principalPoint) were determined. Could you please provide more information on this?
Thank you for your assistance.
https://www.mathworks.com/help/vision/ref/pcfromdepth.htmlHello,
I have been working with the example code provided in the ‘doc pcfromdepth’ documentation in MATLAB. I used the example color image ‘sampleImage.png’ along with depth images extracted using the ‘MiDaS’ and ‘Depthanything v2’ models to generate the point cloud. However, the point cloud I obtained was inaccurate compared to the result shown in the example.
I am curious about how the DepthImage used in the MATLAB example was extracted, and how the camera parameters (focalLength, principalPoint) were determined. Could you please provide more information on this?
Thank you for your assistance.
https://www.mathworks.com/help/vision/ref/pcfromdepth.html Hello,
I have been working with the example code provided in the ‘doc pcfromdepth’ documentation in MATLAB. I used the example color image ‘sampleImage.png’ along with depth images extracted using the ‘MiDaS’ and ‘Depthanything v2’ models to generate the point cloud. However, the point cloud I obtained was inaccurate compared to the result shown in the example.
I am curious about how the DepthImage used in the MATLAB example was extracted, and how the camera parameters (focalLength, principalPoint) were determined. Could you please provide more information on this?
Thank you for your assistance.
https://www.mathworks.com/help/vision/ref/pcfromdepth.html pcfromdepth MATLAB Answers — New Questions
Modern Authentication & IIS
I hope someone might be able to help me with some questions I have.
We run Exchange 2016, this is all upto date, and started moving to Modern Authentication.
This I have managed to do for Outlook Clients on Windows. But when I start to use the following: Disable Basic authentication on Exchange Server virtual directories | Microsoft Learn
Our 1st exchange server is fine with it, but our 2nd Exchange throws up an error about IIS “the version of internet information services (IIS) that is running on server …….”
How do I fix this? Also when moving from Basic Authentication to Modern, do Mobile phone clients have to recreate the connection, or will it connect to Modern?
I have enabled Modern Authentication using the Entra Sync which gives the OAuth option.
If someone has any help, or knows of a company who would fix this for a charge, let me know.
I hope someone might be able to help me with some questions I have.We run Exchange 2016, this is all upto date, and started moving to Modern Authentication.This I have managed to do for Outlook Clients on Windows. But when I start to use the following: Disable Basic authentication on Exchange Server virtual directories | Microsoft LearnOur 1st exchange server is fine with it, but our 2nd Exchange throws up an error about IIS “the version of internet information services (IIS) that is running on server …….”How do I fix this? Also when moving from Basic Authentication to Modern, do Mobile phone clients have to recreate the connection, or will it connect to Modern?I have enabled Modern Authentication using the Entra Sync which gives the OAuth option.If someone has any help, or knows of a company who would fix this for a charge, let me know. Read More
Workspace Manager – Importing analytics to parent for children
Greetings,
I have a Central workspace manager Sentinel (no data is ingested). However we have some Sentinel workspaces that have data connectors and data being ingested and are monitored by a SOC.
We would like to be able to save analytics to this central workspace and deploy the analytics to the child workspaces. However we cannot save the rule in the central workspace as the table does not exist.
For example I have an Okta analytic in a child workspace, where the query will query the Okta_CL table and some of the fields. I have exported it from the child and wish to import to the parent workspace so I can distribute to other children using Workspace manager. However I get an error because the Okta_CL table does not exist and does not have the fields.
Does anyone have any ideas of how we can work around this to “force” the analytic to be present in the parent tenant? The children tenant CANNOT be linked in workspace manager.
Regards
Greetings, I have a Central workspace manager Sentinel (no data is ingested). However we have some Sentinel workspaces that have data connectors and data being ingested and are monitored by a SOC. We would like to be able to save analytics to this central workspace and deploy the analytics to the child workspaces. However we cannot save the rule in the central workspace as the table does not exist. For example I have an Okta analytic in a child workspace, where the query will query the Okta_CL table and some of the fields. I have exported it from the child and wish to import to the parent workspace so I can distribute to other children using Workspace manager. However I get an error because the Okta_CL table does not exist and does not have the fields. Does anyone have any ideas of how we can work around this to “force” the analytic to be present in the parent tenant? The children tenant CANNOT be linked in workspace manager. Regards Read More
MCI FY25 Addendum
Hi,
I see the FY25 MCI addendum has been updated as of today however the link simply takes you back to the homepage and there’s not the usual excel file available for download.
When will it be published please?
Kind regards,
Kirsty
Hi, I see the FY25 MCI addendum has been updated as of today however the link simply takes you back to the homepage and there’s not the usual excel file available for download. When will it be published please? Kind regards,Kirsty Read More
I am using the system identification tool box to create a greybox model. My error is The sizes of the matrices returned by the ODE function must be consistent with the input/o
Post Content Post Content system identification tool box MATLAB Answers — New Questions
Shrink “from to” part of new mail in height
Is it possible to make the part in the red frame narrower in height?
Is it possible to make the part in the red frame narrower in height? Read More
How to export the monthly cost summary for all the azure subscriptions in tenant? (automated)
Hi,
We have multiple azure subscriptions in directory. How to export the Cost summary by for all subscriptions at once with tags?
I would like to automatically export / send the costs for the past month for all subscriptions including tags. Possible?
Thanks for hints.
Roman
Hi,We have multiple azure subscriptions in directory. How to export the Cost summary by for all subscriptions at once with tags?I would like to automatically export / send the costs for the past month for all subscriptions including tags. Possible?Thanks for hints.Roman Read More
PWA Permission Management
Hello,
why can I see Projects in PWA from Groups, that I’m not even a member of?
How can we change that in our settings?
Regards
Hello, why can I see Projects in PWA from Groups, that I’m not even a member of?How can we change that in our settings? Regards Read More
The text my functions return doesn’t spill over to adjacent cells on the new worksheet.
Hello everyone! I’m a bit new to excel, but despite that i’ve tried my hands at what i consider a “difficult” challange.
I’d like to have two sheets, one that contains all the information, and a second one that acts as a “printable version” where i’ve only placed parts of the information that may be relevant for said project.
To do this, I’ve added a checkbox system on my data page, where i can simply check the box and said row gets transffered over to the other page in a dynamic way.
(So i can press box 1 6 and 9, and they’ll be placed right under eachother in order. Should i then add box 2, that will squeeze it’s way inbetween 1 and 6 in the previous data set… Hard to explain but you’ll understand if you look at the sheet.
My issue is that the text and information that gets placed on my “printing page”, don’t spill over into the adjacent cells, as it normally would’ve if i simply wrote the text out. I suspect this has to do with the fact that my function seems to be returning the entire row as a large “block” rather than several columns. But i’ve got no idea on how to fix it.
I should also mention that i’m not the author of the function, but i’ve tweaked it slightly to fit my needs.
I’d appreciate any help on the subject. Thanks!
Hello everyone! I’m a bit new to excel, but despite that i’ve tried my hands at what i consider a “difficult” challange. I’d like to have two sheets, one that contains all the information, and a second one that acts as a “printable version” where i’ve only placed parts of the information that may be relevant for said project. To do this, I’ve added a checkbox system on my data page, where i can simply check the box and said row gets transffered over to the other page in a dynamic way.(So i can press box 1 6 and 9, and they’ll be placed right under eachother in order. Should i then add box 2, that will squeeze it’s way inbetween 1 and 6 in the previous data set… Hard to explain but you’ll understand if you look at the sheet. My issue is that the text and information that gets placed on my “printing page”, don’t spill over into the adjacent cells, as it normally would’ve if i simply wrote the text out. I suspect this has to do with the fact that my function seems to be returning the entire row as a large “block” rather than several columns. But i’ve got no idea on how to fix it. I should also mention that i’m not the author of the function, but i’ve tweaked it slightly to fit my needs. I’d appreciate any help on the subject. Thanks! Read More
LATIN CAPITAL LETTER SHARP S
The letter ẞ (U+1E9E, LATIN CAPITAL LETTER SHARP S) is the uppercase version of ß (U+00DF LATIN SMALL LETTER SHARP S).
The uppercase formatting of this letter does not work correctly in Word.
The function UCASE does not work correctly in Excel
The function LCASE(“ẞ”) does not work correctly in Excel
The letter ẞ (U+1E9E, LATIN CAPITAL LETTER SHARP S) is the uppercase version of ß (U+00DF LATIN SMALL LETTER SHARP S).The uppercase formatting of this letter does not work correctly in Word.The function UCASE does not work correctly in ExcelThe function LCASE(“ẞ”) does not work correctly in Excel Read More
Getting Started with Microsoft Azure for App Development
Hi, I am Hifza Eman, a Student Ambassador from Pakistan pursuing Software Engineering, and I’m excited to share how Microsoft Azure can help developers build, host, and scale applications effortlessly.
Microsoft Azure is a powerful cloud platform that allows developers to build, host, and scale
applications. Azure has a wide range of services in developing web apps, mobile backends, or RESTful APIs. Azure helps in simplifying the process and allows developers to focus on their code. In this article, we’ll explore two key Azure services: Azure App Service and Azure Functions and will look at how they can enhance your app development experience.
Azure App Service
Azure App Service is a platform that allows developers to build and host applications in programming language of their choice and it doesn’t require developers to manage the infrastructure. It supports both Windows and Linux environments and offers various features like auto-scaling and high availability, ensuring that applications can grow with their user base.
Key Features of Azure App Service
Multi-Language Support: Azure App Service supports a variety of languages, including Node.js, Java (Tomcat, JBoss, or with an embedded web server), PHP, Python, and .NET Core. Developers can easily deploy their code using the command az webapp list-runtimes –os linux to see the latest supported versions.
DevOps Integration: Through Azure App Service, developers can automate deployments from GitHub, Azure DevOps, or any Git repository. This aligns the development workflow and enhances collaboration between team members.
Enhanced Security and Load Balancing: App Service also provides built-in security features, load balancing, and autoscaling, ensuring the application remains secure and performs well under varying loads.
Custom Domains and SSL: Developers can configure custom domains and secure their applications with TLS/SSL certificates, enhancing user experience and security.
If you want to learn more and practice Azure App Service, you can explore this module: Host a web application with Azure App Service
Azure Functions
Azure Functions is a serverless computing service that enables developers to run event-driven code without the need to manage the infrastructure. This flexibility allows developers to focus on writing the code that matters most to their application while Azure handles the underlying resources.
Benefits of Azure Functions
Reduced Code and Maintenance: Functions allow developers to write less code and maintain less infrastructure, leading to cost savings and increased productivity.
Flexible Hosting Options: Azure Functions offers various hosting plans, including a Consumption plan where developers only pay for execution time, and a Premium plan that keeps instances warm for faster response times. This flexibility allows developers to choose the best option based on their application workload.
Multi-Language Support: Azure Functions supports several programming languages, including C#, Java, JavaScript, PowerShell, and Python. This variety allows developers to use their preferred languages and tools.
Integration with Other Azure Services: Functions can easily integrate with other Azure services, making it ideal for building web APIs, responding to database changes, processing IoT streams, and managing message queues.
To dive deeper and practice Azure Functions, check out this module: Create serverless logic with Azure Functions.
Getting started with Microsoft Azure for app development opens a world of possibilities for developers. With services like Azure App Service and Azure Functions, developers can build robust applications without the complexity of managing infrastructure. By leveraging the power of Azure, you can focus on what truly matters for your application and delivering high-quality applications that meet your users’ needs.
Explore Azure today and take your app development to the next level!
Microsoft Tech Community – Latest Blogs –Read More