Mis Interview Quetions
Mis Interview Quetions
Mis Interview Quetions
Excel is spreadsheet software where we can store our data in tabular form like
row and columns and we can access it easily.
Cons- we have limitation of rows in excel so we cannot work on big data using
excel.
Charts in Excel are essential tools for data visualization, allowing users to
quickly and e ectively communicate insights from their data. By selecting the
appropriate chart type and customizing it to suit the data and audience, users
can enhance their data analysis and presentation significantly.
The HLOOKUP function (Horizontal Lookup) searches for a value in the first row of
a range and returns a value in the same column from another row.
HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup])
Summary
VLOOKUP: Searches for a value in the first column and returns a value in the same row
from another column.
HLOOKUP: Searches for a value in the first row and returns a value in the same column
from another row.
INDEX and MATCH: Combines two functions to create a more flexible lookup. INDEX
returns a value from a specific row and column, while MATCH finds the position of a value
in a range.
XLOOKUP: A powerful, versatile function that combines and improves upon VLOOKUP,
HLOOKUP, and INDEX/MATCH, allowing for flexible lookups with additional options for
error handling and search modes.
Explain Macro In Ms-excel
A macro in Microsoft Excel is a sequence of instructions that automates tasks.
These tasks can range from simple repetitive actions to complex sequences of
operations. Macros are written in a programming language called Visual Basic for
Applications (VBA).
VBA (Visual Basic for Applications): The programming language used to write
macros in Excel.
Recording Macros: A feature that allows users to create macros by recording their
actions in Excel.
Macro Security: Settings that control the execution of macros to protect against
malicious code.
Creating macros-
Open the Developer Tab: If the Developer tab is not visible, enable it by going to
File > Options > Customize Ribbon and checking the Developer option.
Record a Macro:
Macro Settings: Adjust macro security settings in File > Options > Trust Center
> Trust Center Settings > Macro Settings .
Wildcards in Excel are special characters used to represent one or more characters in
search criteria. They are particularly useful in functions that require criteria or conditions,
such as SUMIF, COUNTIF, VLOOKUP, MATCH, and others. Excel supports three main wildcard
characters:
Highlight Cells Rules: Apply formatting to cells that meet specific conditions, such as
greater than, less than, equal to, text that contains, etc.
Top/Bottom Rules: Format cells that are in the top or bottom percentage, above or
below average, and other statistical criteria.
Data Bars: Add horizontal bars within cells to represent the value relative to other
cells.
Color Scales: Apply a gradient of colors to a range of cells based on their values.
Icon Sets: Display icons within cells to indicate data trends and categories, such as
arrows, stars, flags, etc.
Custom Rules: Create your own rules using formulas to apply conditional formatting.
What-If Analysis tools in Excel are powerful for exploring di erent scenarios and
making informed decisions based on how changes in variables a ect outcomes.
By using Data Tables, Scenario Manager, Goal Seek, and Solver, you can gain
insights into your data, optimize solutions, and better plan for future
possibilities.
Yes, I know macros and VBA language. As a sales manager of a leading electronics
brand, my team had to manipulate thousands of lines of data to create a sales
report. Each quarter the company required a new report and the steps required for
creating a report remained the same. I developed a macro to automate the entire
process. The macro could manipulate the data, generate a report and displayed the
insights in the chart form. It saved a lot of working hours and increased the
productivity of my sales team.
The most important skills associated with an MIS Executive are MS Excel , SQL ,
and VBA .
Data storage
Data retrieval
Data propagation
Planning
Graphical report making
lastrow = Worksheets(“name_of_the_worksheet”).rows.usedrange.count
lastcol = Worksheets(“name_of_the_worksheet”).columns.usedrange.count
Worksheets(“name_of_the_worksheet”).Range(lastrow, lastcol).Copy
Worksheets(“name_of_the_worksheet_to_be_copied”).Range(“cell_name_where_you_w
ant_to_copy”)()