How can I use Persian date (Shamsi)? [closed] - excel

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
I'd like to use Persian date (Hijri- Shamsi) in Excel 2007 worksheet directly as the base of calculation. How is that possible?

I would convert the Persian dates to Julian dates via VBA , perform the calculations with standard Excel functions and then convert them back to Persian with VBA
I posted a reference here

Related

Find which cell value has the most number of rows? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
The excel spreadsheet at my work has a column for date and I'm trying to find out which date shows up the most. Is there a way to do that?
As can be found here, assume your dates are in the range, of say, A2:A1000, you could use the following formula:
=INDEX(A2:A1000,MODE(MATCH(A2:A1000,A2:A1000,0)))

How do I format result of Excel formula to take currency format? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I have 2 columns, each with a numeric value. The third column is the PRODUCT of the first 2 columns but it is just numbers. I want to in the format of $xxxx.00 rather than xxxx.
What can I do to achieve this?
RIght click on the column header and choose Format Cells
Format the cell to currency. It's a command on the Home ribbon.

Excel pivot different between previous year value [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
i'm using a pivot table and i'm trying to compare summed value of a month of two years.
![Example][1]
How can i add (using pivot methods) a column with the % difference between these any year-month and the month of the previous year?
note that i I can have more years.
Here is an example of the output of a row that i would like to obtain.
![enter image description here][2]
Here is how the OP solved the issue:

Extracting year value from mm/dd/yyyy [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I have a very large dataset (100,000+ records) and one of the fields is a date field that is in this format: mm/dd/yyyy. I have tried using "=YEAR(A1)" to get the year value from the column A which has the original date to column B with only the year date. It just gives me a very weird date like "6/31/1905" but my dates are definitely not in that range. Any other advice?
Format the cell containing the formula:
=YEAR(A1)
as General

Excel: Convert MM/YYYY to MM/DD/YYYY [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
We have a large sheet with expiration dates. Most are currently formatted MM/YYYY. Unforunately the new ones are MM/DD/YYYY. How can I add 01 (first day of the month) to the MM/YYYY formatted dates so they comply with MM/DD/YYYY?
Example:
Convert 05/2016 to 05/01/2016
Thanks!
=DATE(YEAR(cell_with_date),MONTH(cell_with_date),1)

Resources