Home > Topics > excel > Function formula to convert quarter in excel

Function formula to convert quarter in excel

angryTom
Release: 2019-11-05 09:57:27
Original
8974 people have browsed it

Function formula to convert quarter in excel

Excel function formula to convert to quarter

Sometimes we want to convert the date to quarter for display, such as 1996 July 4th is shown as Q3 1996. Let’s see how to achieve it.

There is such a data table, column A is the date

Enter or copy and paste the following formula in B2

=YEAR(A2)&"年第"&CEILING(MONTH(A2)/3,1)&"季度"
Copy after login

or

=YEAR(A2)&"年第"&INT((MONTH(A2)+2)/3)&"季度"
Copy after login

Just drop down and fill in.

Function formula to convert quarter in excel

Recommended tutorial: excel tutorial

The above is the detailed content of Function formula to convert quarter in excel. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template