A.N.M. Mohaimen Shanto

About author

A.N.M. Mohaimen Shanto, a B.Sc. in Computer Science and Engineering from Daffodil International University, boasts two years of experience as a Project Manager at Exceldemy. He authored 90+ articles and led teams as a Team Leader, meticulously reviewing over a thousand articles. Currently, he focuses on enhancing article quality. His passion lies in Excel VBA, Data Science, and SEO, where he enjoys simplifying complex ideas to facilitate learning and growth. His journey mirrors Exceldemy's dedication to excellence and continuous learning.

Designation

Project Manager at ExcelDemy in SOFTEKO.

Lives in

Dhaka, Bangladesh.

Education

B.sc in Computer Science and Engineering (CSE) from Daffodil International University.

Expertise

Data Analysis, Content Writing, C, C++, Python, HTML, SQL, MySQL, Data Science, Microsoft Office, and Project Management.

Experience

Project Manager, SOFTEKO

November 2022 - Present
  • Spearhead the management of article projects, overseeing the entire site structure to enhance user engagement and content accessibility.
  • Implement strategic content plans, including developing editorial calendars and style guides, tailored to project objectives.
  • Lead and supervise a diverse team of content creators, fostering an environment of creativity and high performance.
  • Utilize data analytics to monitor content performance, generating insightful reports to inform future content strategies and development.

Team Leader, SOFTEKO

April 2022 - October 2022
  • Led a team of content professionals in producing high-quality Excel-related articles, ensuring both accuracy and engagement.
  • Conducted thorough reviews and quality checks of over 500 articles, maintaining high standards of content excellence.
  • Facilitated team brainstorming and research sessions, aimed at optimizing content creation processes and team productivity.

Excel and VBA Content Developer, SOFTEKO

 October 2021 - April 2022
  • Authored over 100 informative and user-friendly articles on Excel and VBA, contributing significantly to the knowledge base and user assistance.
  • Employed expert knowledge of Excel and VBA to provide practical solutions and guides, enhancing the utility value of the content.

Online Certifications

  • IBM Data Science Professional Certificate Offered by IBM on Coursera This nine-course specialization covered a wide array of data science topics including open-source tools and libraries, methodologies, Python, databases, SQL, data visualization, data analysis and machine learning.
  • “Managing the Company of the Future” Completed May, 2020 at Coursera.org. Taught by Julian Birkinshaw, University of London.
  • “Cloud Computing Basics” Completed June, 2020 at Coursera.org. Authorized by LearnQuest
  • “Industrial IoT on Google Cloud Platform” Completed May, 2020 at Coursera.org. Authorized by Google
  • “Communication Skills: Be a Star Presenter on a panel” Completed at Udemy.com

Summary

  • Currently working as Project Manager of ExcelDemy
  • Started technical content writing of Excel & VBA in October 2021 later prompted as Team Leader for Content Management.

Latest Posts From A.N.M. Mohaimen Shanto

0
Excel Shortcut to Merge Cells (3 Methods + Bonus)

In Microsoft Excel, merging cells is one of those essential tasks. To prepare a great presentation, you may need to merge some cells of your dataset. Most of ...

0
How to Use EoMonth in Excel VBA (5 Examples)

In Microsoft Excel’s Visual Basic for Applications (VBA), there are a lot of built-in functions that can ease the ways of solving complex problems. If you are ...

0
Date Variable in VBA Codes (7 Uses of Macros with Examples)

In Microsoft Excel's VBA, there are a lot of essential methods and functions. To use those, we have to declare variables. The Date variable is one of them. If ...

0
Scenario Analysis in Excel: A Guide with 2 Sample Cases + Template

In Microsoft Excel, analyzing scenarios is one of the crucial tasks. We consider it as a part of data analysis. Scenario analysis means comparing values and ...

0
A Daily Compound Interest Calculator in Excel (Template Attached)

Compound interest generates your money to develop quickly. It makes a sum of money increase at a more rapid rate than simple interest because you will earn ...

0
How to Use QUARTILE Function in Excel (5 Suitable Examples)

The QUARTILE function is a built-in function in Excel that is categorized as a Statistical Function. Quartiles are values that split your data into quarters. ...

0
How to Use LINEST Function in Excel (4 Suitable Examples)

The LINEST function is a built-in function in Excel that is categorized as a Statistical Function. It is one of those essential functions. In this tutorial, ...

0
How to Use LOOKUP Function in Excel?

In this article, we will learn about the LOOKUP function in Excel. We will explore different examples of the LOOKUP function in different scenarios, with ...

0
Change Font Color Based on Value of Another Cell in Excel

Changing the font color of a dataset is one of the essential tasks of Microsoft Excel. We do it to have a clear and attractive look at our dataset. It helps us ...

0
How to Hide Zero Values in Excel Pivot Table (3 Easy Methods)

Pivot table is one of the essential tools of Microsoft Excel. If you have worked with that, you might know that. It gives us a detailed view and insight into ...

0
Excel VBA: Select Multiple Columns (3 Methods)

Selecting multiple columns in Excel is a common task. We select numerous columns to perform various operations. You can pick multiple columns manually. But, if ...

0
[Fixed!] Excel Not Recognizing Numbers in Cells (3 Techniques)

While working with Microsoft Excel, you may find yourself in a situation where Excel won't recognize your numbers. Sometimes, we collect data from another ...

0
Find Last Row with Data in a Range Using Excel VBA Macros (7 Methods)

While working with Microsoft Excel, finding the last rows or columns is a common task. We use the keyboard to find the last used rows or columns. But, you may ...

0
Loop through a Range for Each Cell with Excel VBA (8 Examples)

VBA code in Microsoft Excel is one of those tools that can help a user perform complex operations at ease. If you are working with that, you know how much time ...

0
End of a Range Using VBA in Excel (With Examples)

If you are working with Microsoft Excel's VBA codes, you may know how important this is. Excel's VBA code saves a lot of time. It can help you analyze a large ...

Browsing All Comments By: A.N.M. Mohaimen Shanto
  1. Thank You JUAN. Very glad to know that this article helped you.

  2. Hello P MUMU,
    We are glad to know that this article helped you to solve your problem. For more like this, make sure to check our other articles from ExcelDemy.

  3. Hello Polina. Thanks for asking. Basically, you have to change the cell references here.
    Suppose you have data in the following ranges:
    1. N3:N13
    2. P1:P19
    3. AB13:AB20
    4. CC10:CC20

    Just use the following code:

    Sub ConvertTextToNumber()
    With Range(“N3:N13”)
    .NumberFormat = “General”
    .Value = .Value
    End With

    With Range(“P1:P19”)
    .NumberFormat = “General”
    .Value = .Value
    End With

    With Range(“AB13:AB20”)
    .NumberFormat = “General”
    .Value = .Value
    End With

    With Range(“CC10:CC20”)
    .NumberFormat = “General”
    .Value = .Value
    End With

    End Sub

    There are various ways. But this is the simplest.

  4. Hello HOWARD,
    Thanks for asking this important question. Basically scenario summary will show the latest dataset in the current values column. As we changed the scenario by clicking OK.

    Now, this is not a wonderful solution. But it may help you.

    1. Copy the original dataset to a new sheet.
    2. Then go to Scenario Manager
    3. Now click Summary.
    You will see the original data in Current Values.
    Thank You.

  5. Hey Luna, you can use VBA codes to solve your problem if these methods don’t work.
    Read this article:
    https://www.exceldemy.com/convert-text-to-number-excel-vba/

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo