In this video i have given you a short overview on SharePoint List and different ways to create a list, How to create a SharePoint List in Tamil
What You'll Learn: ✔️ what is SharePoint List ✔️ Limitations of SharePoint list ✔️Different Columns of SharePoint List ✔️ Create list from Blank ✔️ List columns renameSaturday, September 3, 2022
Introduction to Microsoft SharePoint Online in Tamil | what is Microsoft SharePoint Online
In this video i have given you a short overview on SharePoint which is a web-based collaborative platform that integrates natively with Microsoft Office. Launched in 2001, SharePoint is primarily sold as a document management and storage system, but the product is highly configurable and its usage varies substantially among organizations
What You'll Learn: ✔️ what is SharePoint ✔️ History of SharePoint ✔️Best practices of SharePoint ✔️ Evolution of SharePoint ✔️ List and Library ✔️ Site Permissions ✔️ Benefits of SharePointVariables in Powerapps in Tamil | 3 types of PowerApps Variables in Tamil | Rank Calculator app
In this video I have explained step-by-step tutorial on how you can create a Rank Calculator app using Microsoft PowerApps using Variables
Microsoft SharePoint Playlist https://www.youtube.com/playlist?list=PLpPq2RbQHL-3poKwei6tlD2sAML84ETnu How to create a SharePoint List - https://youtu.be/-iDNs5NrxS4 Power Apps Link : https://make.powerapps.com/ What You'll Learn: ✔️ How to create Rank Calculator app using Powerapps ✔️ What is Global Variable ✔️ What is Context Variable ✔️ What is Collections ✔️ How to use Clear ✔️ Usage of SUM Function ✔️ View variables and collections in File MenuCreate a Employee Database app using Microsoft PowerApps | Learn PowerApps in Tamil
Learn PowerApps in Tamil | Create a Employee Database App
In this video I have explained step-by-step tutorial, learn how you can create a Microsoft PowerApps from a SharePoint list in a easy way. Empower your team to start building and launching apps right away using prebuilt templates, drag-and-drop simplicity, and quick deployment—then roll out continuous improvements as needed. Microsoft SharePoint Playlist https://www.youtube.com/playlist?list=PLpPq2RbQHL-3poKwei6tlD2sAML84ETnu How to create a SharePoint List - https://youtu.be/-iDNs5NrxS4 Power Apps Link : https://make.powerapps.com/ What You'll Learn: ✔️ How to create a Powerapps from SharePoint list ✔️ Adding new screens in powerapps ✔️ Navigating to other screens ✔️ Overview on Gallery and Form ✔️ Button and Icons ✔️ On success behavior ✔️ Adding images in powerapps
Source File : https://github.com/JeganBas/PowerApps/blob/main/EmployeeDatabaseApp_20220903125934.zip
Introduction on Power Apps | Create your first app | Video in Tamil
What is Power Apps ?
PowerApps is low code platform through which we can create apps for mobile, tablet and desktop. We can make use of almost all kinds of office 365 products as datasource. The following video can help you to understand the basics of PowerApps in Tamil.
Saturday, October 10, 2020
Save an output using PowerShell
Most of the times we want to get some report or any such values from our SharePoint using PowerShell, Once we got the output in the PowerShell window, we want to save it as a document, for that we used to copy them and paste it in a new window.
There is a simple solution for that, we can add a line of code to save the output data in the desired file format.
Following is an example of code to get the SharePoint list field data as a output.
$fID = "69xd368d-2f95-4juc-a1f9-8d4324ecb007"
$fields=$site.rootweb.fields | where ID -match $fID
$fields
Monday, September 16, 2019
SharePoint - How to view all the Alerts added in your site by different users in various list
In order to mange them, we want to view all of the alerts in the sites at one place, else we have to reach out to each users to know the alerts created by them which is not a fair idea.
So let's see the simple steps to view all the Alerts added in your site by different users in various lists.
Go to your Site
Go to Site Settings à Site Action à User Alerts or user the below URL format to navigate to the user alerts page.
https://your site domain/sites/subsite/_layouts/15/sitesubs.aspx
Here you go, select the drop down with the list of users who created alerts in that particular site.
On selecting a user, we can able to see the alerts in various list created by the user / or tagged to that particular user,
Also, for a Site Admin, they will have the options to Delete those alerts if required.
Tuesday, June 18, 2019
SharePoint Hacks
collection:
Thursday, May 30, 2019
Add Hyperlink in Chat BOT's Answer - using QnA Maker
Hope you all doing well..
This is one of the important trick, which is very much essential for all the bot developers mainly who uses MS bot framework and MS cognitive services
Among them, QnAMaker is the popular cognitive service which we use to run our chatbot
Issue:
However, we can add Question and Answer in our knowledge base, we couldn't add any Hyperlinks easily in the answers, so here is my solution
Solution
While adding the answers in the QnA Maker, add the hyperlink in such a way
[********Text to Display*************](https://*************Your URL********)
Add your text to display inside a square brackets, and followed by URL inside a Open brackets.
Note: While pasting the URL, make sure its not hyperlinked by its own,
paste it in a Notepad first before pasting in QnA Maker.
Monday, May 20, 2019
Click on checkbox's label text to check the checkbox
Hope you're well.
You all might faced this small issue, when we want to check the check box which is so small in the Web-Page, and you need to focus on the check box.
All we need is to directly click on the label or text next to the check box, because we are reading the respective meaning of the check box and understanding it and we don't want to go back to check the check box,
So I've a simple solution with which we can directly click on the description of the check box to make the check box checked.
Example:
The most used check box is "Don't Show this Again." and here too the size of the actual check box is too small.
<input type="checkbox" id="ClickMe" >Don't show this again!
Solution
<input type="checkbox" id="ClickMe" > <label for="ClickMe">Don't show this again!</label>
Friday, May 17, 2019
I want to make the Files to get Downloaded instead of Opening in a New Window in the Browser
Hope you all doing well.
Many Developers would have came across this small issue while developing a site, where you will get requirements from business that they don't want their PDF to be open in a new window as they takes time if their sizes are more than 10MB, so they will ask you to make the document to get downloaded automatically instead of opening in a new window.
So I've a simple solution for it.
Example:
I've a table with many rows, containing hyperlink data, which opens in a new window on clicking, but i want them to get downloaded automatically
<a href="https://aaaaaaaaaaaaaaaaaaaaaaaa/My Document.pdf" target="_blank">My Document</a>
Solution
<a href="https://aaaaaaaaaaaaaaaaaaaaaaaa/My Document.pdf" download="My Document">My Document</a>
Tuesday, May 7, 2019
How to download the PDF files instead of opening directly in your browser
- On your computer, open Chrome.
- At the top right, click More àSettings.
- At the bottom, click Advanced.
- Under "Privacy
and security," click Site settings.
- Near the bottom, click PDF
documents.
- Turn ON Download PDF
files instead of automatically opening them in Chrome.
Monday, March 4, 2019
SharePoint Framework (SPFx) - Step by Step
The following are the important software required for creating SPFx
- Node JS ( to write node based project)
- npm package ( these are the pre-written library for node based project )
- Webpack ( to bundle the code and move to production)
- Yeoman (a Code generation tool :- used to generate project structure, - find new template)
- Gulp JS ( Task runner - web server )
Create your first SharePoint Framework WebPart
Step 1 : Install Node JS from https://nodejs.org
Step 2 : Install npm Package from https://www.npmjs.com/
cmd: npm install -g npm ( - g : installing globally )
Now we can start creating node projects which is npm based
Lets Install Yeoman a code template generator tool
Step 3 : cmd: npm install -g yo https://yeoman.io/
Then we need to install Gulp JS https://gulpjs.com/
Step 4 : cmd: npm install -g gulp
Lets create our new project - SPFx Webpart
Step 5 : cmd: md helloworld webpart
cmd: cd helloworld webpart
Step 6 : cmd: yo @microsoft/sharepoint
Step 7 : cmd: gulp serve
Now, you can able to view the webpart in a browser, displaying from a localhost server
Step 8 : To Edit the webpart, open the project folder in Visual Code, and inside the folder "src", there will be a typescript file created, like "helloworldwebpart.ts", which we need to edit as per our requirement.
To deploy the webpart in production, we need to create a package and push it in the app catalog of the destination production site.
Lets create the package file
Step 9 : cmd: gulp package-solution -ship
Now, the package file "helloworld-webpart.sppkg" has been created inside the solution folder, under the sharepoint folder inside our project folder.
Step 10 : Open your SharePoint site in a browser and go to the app catalogs page, https://sitename.com/site/appcat
Lets upload or drag & drop our sppkg file in this document library.
Step 11 : Lets Open the site or subsite where you want to add our new webpart, click on "Add an App", now you will be able to find our webpart in the list.
Step 11 : Lets Open the site or subsite where you want to add our new webpart, click on "Add an App", now you will be able to find our webpart in the list.
Step 12 : Go to the page where you want to display your webpart, and click on insert webpart, under the underdevelopment category, you can find our helloworld webpart. which you can save and it will work.
Note: Update the "write-manifest.json" , with the CDN (Content delivery network )URL, where you want host your code
Wednesday, February 27, 2019
Overview of Office 365
Office
365
How
to Access O365
Office
365 Products/Apps/Applications
Know About SharePoint Online
SharePoint
SharePoint
Online
How to create a SharePoint List in Tamil | SharePoint Online List in Tamil
In this video i have given you a short overview on SharePoint List and different ways to create a list, How to create a SharePoint List in...
-
What is Power Apps ? PowerApps is low code platform through which we can create apps for mobile, tablet and desktop. We can make use of almo...
-
Hey Developers, Hope you all doing well.. This is one of the important trick, which is very much essential for all the bot developers ...
-
In this video I have explained step-by-step tutorial on how you can create a Rank Calculator app using Microsoft PowerApps using Variable...

