As you can see in the screenshots the calendar is showing just 30 days of January and the day 31 is missing. when I try to add this day manually by adding a new column(AG) it works. but when i scroll to the next month which is February the column AG turns blank! and when I scroll back to January its again 30 days!
相关问题
- Excel sunburst chart: Some labels missing
- Error handling only works once
- Excel formula in VBA code
- Excel VBA run time error 450 from referencing a ra
- DoCmd.TransferSpreadsheet is not recognizing works
相关文章
- Get column data by Column name and sheet name
- programmatically excel cells to be auto fit width
- Unregister a XLL in Excel (VBA)
- How to prevent excel from truncating numbers in a
- numeric up down control in vba
- Declare a Range relative to the Active Cell with V
- What's the easiest way to create an Excel tabl
- How to create a hyperlink to a different Excel she
Because You hide
Columns("C:NI")
and unhide only 30 columns from column C to column AF.Range("B3").Value
equals to 1 andRange("B3").Value * 31 - 29
equals to 2. Likewise,Range("B3").Value * 31 + 1
equals to 32. So, you unhide only 30 columns (32-2)! Just change your VBA codeRange("B3").Value * 31 - 29
toRange("B3").Value * 31 -28
andRange("B3").Value * 31 + 1
toRange("B3").Value * 31 + 2
:And one more thing, change all
Column()-1
toColumn()-2
in your excel formulaes. Here is your repaired workbook. Check and tell me any your ideas.