Excel Functions SUMIF and SUMIFS Functions Excel The SUMIF function can be used to change the contents of the total according to conditions, and the SUMIFS function can be used to specify multiple conditions. The reason why and how to use the SUMIF... 2024.07.04 Excel Functions
Excel Functions How to Instantly Convert Address Numbers to Kanji Using SUBSTITUTE in Excel. When printing addresses on envelopes using the address list of a New Year's card or a customer list, for example, horizontal envelopes are written in arithmetic (Arabic) numerals such as "1, 2, 3", while vertical envelopes must be written in Chinese numerals such as "1, 2, 3". Substitute the numbers... 2024.09.20 Excel Functions
Excel Macro (VBA) How to use the input screen "InputBox" Excel Macro (VBA) If you want to use values or arbitrary characters that do not exist in Excel, the "InputBox" is useful to easily create an input screen during macro execution. In this article, we will briefly explain how to use this "InputBox". 2025.02.21 Excel Macro (VBA)
Excel Macro (VBA) How to use the variable type "Workbook" Excel(Excel) Macro(VBA) For other variable types, please refer to Excel (Excel) Macro (VBA) about variable types. First, we will explain the basic usage of the variable type "Workbook". 2024.06.14 Excel Macro (VBA)
Windows How to Enable Excel Macros: Fix 'Macro Has Been Blocked' Error Safely If you are having trouble running Excel macros, you have come to the right place. This article explains how to solve the red band message that appears in version 2203 and later. Actually, it can be easily solved by file saving and property settings. This article will help you solve the macro block problem completely. 2025.06.12 WindowsExcel Macro (VBA)
Excel Functions Linking two pull-downs (drop-downs) without macros (when reflected in multiple rows) Excel (Excel) Excel複数行連動プルダウンを作りたい人は必見!この記事ではマクロなしで複数行のドロップダウンを連動させる方法を詳しく解説します。実はINDIRECT関数と名前定義で簡単に実現できるんです。この記事を読めば効率的な一覧表が作れます。 2025.06.09 Excel Functions
Excel Functions How to extract characters before a specific character "LEFT and FIND functions" Excel (Excel) As shown in the figure below, if there is extra data after the string and you want to extract only the string to the left of the extra data, you cannot simply use the LEFT function alone because the number of characters is not constant. Function to extract the left side of the "¥" mark in cell "A2" = LEFT(A2,FIND(...)) 2025.02.19 Excel Functions
Excel Macro (VBA) How to Auto-Resize Excel Columns and Rows with VBA Macros (Copy-Paste Ready) Struggling with cell misalignment or manual resizing in Excel? This article shows how to efficiently adjust row height and column width using VBA—solved in just a few lines of code by a seasoned macro expert. 2025.06.27 Excel Macro (VBA)
Excel Functions Error display "#DIV/0!" Meaning and Countermeasures Excel Error messages are unavoidable when dealing with Excel, and you may be surprised when they suddenly appear. If you know the meaning of the error and what to do about it, there is nothing to be afraid of. Meaning of "#DIV/0! 2024.05.30 Excel Functions
Excel Macro (VBA) VBA "Overflow occurred." Error cause and remedy (runtime error '6′:) Cause of ErrorThis error occurs when the data type is not in a format that can be handled, or when the data type exceeds the range of numbers that can be handled. First, let's reproduce the error. As shown in the figure above, we have set up the code to copy the numeric value in cell "B3" to cell "B4". 2024.10.10 Excel Macro (VBA)