How I Overcame My Stage Fear!

Yes! I had Stage Fear.

When I was in school, I never participated in any debate or competition that required verbal speaking. I was good in studies or can say was one of the brightest student of the batch. Won many badges because I used to get good marks in exams. But I lacked the most important skill: CONFIDENCE. I had visited stage to take Scholar Badges or 100% Attendance certificate, but never went to speak anything.

I had this fear “What will everyone say or think?” OR “What if I make a joke of myself“. I tried to overcome this in my 12th standard by reading some news lines in school assembly on the stage and in front of everyone. I still remember, my legs were shaking. I read those line quickly and came down from stage. I never went up there again.

After school, I went to college for graduation. But this fear came along with me. I became an average student there. I was never a part of any club neither participated in any competition. I tried to overcome this fear (or I should say Stage Fear) and yet again, I failed, for the second time. 😦

It was the last year of my college. We had to participate in something. So I thought of giving a presentation on any random topic. I chose Teleportation. It was an interesting topic and I liked it. I made every preparation and gone through the presentation multiple times. But as soon as I went on to stage, nothing came out of my mouth. I was the person who had to speak first but I was numb. But with God’s grace, my partner started and we both carried the presentation but I was nervous the whole time.

College got over and I was placed in Infosys. I had to enter the corporate world after 4 months. But I had this fear. Fear of stage, fear of public speaking, fear of giving speech and what not. I thought I need to do something about this fear otherwise I will become a laughing stock in front of everyone. I used to think what to do to over this. I cannot be like this for the rest of my life.

Then this idea came to my mind: What is one thing that I like most?

Since childhood, I enjoyed teaching. I always wanted to become a teacher. When I was a kid, I used to pretend to be a teacher and teach imaginary kids.

After graduation, I had 4 months of spare time. I thought of giving classroom training to school/college kids. I interviewed in 2 nearby institutes and was selected in both. But I chose the one where I had full control of my class. I joined it with a minimum wage of Rs. 5000/month. This was year 2010.

I used to make notes of C, C++, Data Structures, PL/SQL etc in morning and take classes in evening. I even studied UNIX commands as it was a requirement of few students. I gathered all my courage and gave my first classroom session. It was a demo session and was successful. Slowly and steadily, number of batches increased from one to 8. I used to give theory sessions in one class and guided other students in their practical class. I was managing two classes at one time. It was hectic but I was enjoying. Students who took classes for basic programming came back for advance classes. I was happy as I overcame my fear. 🙂

I never looked back.

Internet was a luxury at that time and there were no smartphones. I had this Internet connection at my home and a desktop, but the speed was very slow. Plus the content online was very limited at that time. So, I used to borrow novels and books from a public library to enhance my speaking and technical skills. This boosted my confidence in public speaking. I started keeping journal and scribbled my day-to-day activities. This helped me introspect myself and I worked towards my success. By the time I joined Infosys, I was completely changed. I was not the same girl which used to fear of speaking in front of many people. I was full of confidence and was ready to enter the corporate world.

This past training experience helped me in my corporate career and again I gave my classroom session, but to my seniors. That was a successful session and I was awarded with Faculty Award. From that point I made sure that this is where my happiness lies, in giving training, in interacting with people. What was once my weakness, had become my strength now. I no more fear in interacting with people or speak my mind.

I still give training and mentor people. I am now a Microsoft Certified Trainer and can give training officially.

If I can overcome my fear, you can too. You just need some courage and a deep desire to prove yourself. If you don’t get the opportunity, look for one or create one.

This world is full of opportunities, you just need to look.

All the best!

Advertisement

Add new line in Text

There are times when we want to add a new line in a text to be displayed in Label.

Use Char(10) to insert a new line in Label like shown below.

Add new line in Label

Use <br> to insert a new line in HTML Text Input like shown below.

Add new line in HTML Text Input

Convert values selected from Combo Box to a Comma separated string

I have a Combo Box with dummy values A, B, C , D and multi-select On. I want to select multiple values and display them in a Label as comma-separated string

For this, we can use function Concat. Below is an example for the same

As these are hardcoded values in Combo Box, I took Value in Concat function.

If you are getting these values dynamically, you can also use Result.

Calculate Start Date and End Date of Current Month

Below is the formula to Calculate Start Date and End Date of current month

Month Start Date

UpdateContext({
   monthStartDate: 
   Date(
     Year(Now()), Month(Now()), 1)
   )
})

Month End Date

UpdateContext({
   monthEndDate:
   DateAdd(
     DateAdd(
        Date(Year(Now()), Month(Now()),1),
        1, Months
     ),
     -1, Days
   )
})

Fetch all Years between two dates

I have a Data Source Table called as EmployeeDetails with column names as: Employee Name, Address, Phone and DateOfJoining.

Users can fetch all the Years between two given dates using Sequence function.

Code for Items property of Combo Box. You can use this in List Box or DropDown as well.

Introduction to Power Platform

Power Platform is a platform introduced by Microsoft that offers capability to create application without writing much code. Users don’t need to have coding skills to develop these applications. They can create applications, flows, BI Reports and Chatbots using Power Platform.

Power Platform comprise of 4 products:

Power Apps

This provide low-code environment to create applications for business needs. This has services, connectors and data platform (Dataverse) to allow interaction with existing data. Users can create Web and Mobile applications that run on all devices. There are 4 types of Power Apps: Canvas apps, Model-driven apps and Portals.

Power Automate

Power Automate lets you create Cloud and Desktop flows that run in backend to perform various operations like sending an automated email, handle approval requests, data collection, etc. They can be executed automatically on trigger of an event or can be scheduled to run on a regular interval.

Power BI

This is a Business Intelligence product offered by Microsoft. Users can create reports and dashboards from a data set to perform analysis which helps in quick decision making.

Power Virtual Agents

Users can create powerful Chatbots without writing code. Chatbots can perform various actions by calling Power Automate workflows.