sql server reporting services:
In my chart report, my x-axis date is displaying as 9/1/05, 10/1/05, etc. I would like to display the date as 9/05, 10/05, etc, is it possible? Thanks,
Try the value in the format tab if the list provides the format select it . otherwise try giving dd/mm in the text box of the format tab. Amarnath [quoted text, click to view] "jcl_tw" wrote: > In my chart report, my x-axis date is displaying as 9/1/05, 10/1/05, etc. I > would like to display the date as 9/05, 10/05, etc, is it possible? > > Thanks,
Amarnath, Tried using "mm/yy" in the Format Code field. The date shows up as 00/05 for all the months. Jimmy [quoted text, click to view] "Amarnath" wrote: > Try the value in the format tab if the list provides the format select it . > otherwise try giving dd/mm in the text box of the format tab. > > Amarnath > > "jcl_tw" wrote: > > > In my chart report, my x-axis date is displaying as 9/1/05, 10/1/05, etc. I > > would like to display the date as 9/05, 10/05, etc, is it possible? > > > > Thanks,
Try using instr function to seperate the mm/yy ofcourse use date to string convertion. Amarnath [quoted text, click to view] "jcl_tw" wrote: > Amarnath, > > Tried using "mm/yy" in the Format Code field. The date shows up as 00/05 > for all the months. > > Jimmy > > "Amarnath" wrote: > > > Try the value in the format tab if the list provides the format select it . > > otherwise try giving dd/mm in the text box of the format tab. > > > > Amarnath > > > > "jcl_tw" wrote: > > > > > In my chart report, my x-axis date is displaying as 9/1/05, 10/1/05, etc. I > > > would like to display the date as 9/05, 10/05, etc, is it possible? > > > > > > Thanks,
Jimmy, Why dont you try this =Format(DatePart("D",Fields!Date.Value),"#0") & "\" & Format(Datepart("M",Fields!Date.Value),"#0") [quoted text, click to view] jcl_tw wrote: > Amarnath, > > Tried using "mm/yy" in the Format Code field. The date shows up as 00/05 > for all the months. > > Jimmy > > "Amarnath" wrote: > > > Try the value in the format tab if the list provides the format select it . > > otherwise try giving dd/mm in the text box of the format tab. > > > > Amarnath > > > > "jcl_tw" wrote: > > > > > In my chart report, my x-axis date is displaying as 9/1/05, 10/1/05, etc. I > > > would like to display the date as 9/05, 10/05, etc, is it possible? > > > > > > Thanks, > > > Jimmy
RajDeep, Try your solution but unfortunately, the "Format Code" field under "Show Labels" in the chart doesn't allows that many characters. Jimmy [quoted text, click to view] "RajDeep" wrote: > Jimmy, > > Why dont you try this > > =Format(DatePart("D",Fields!Date.Value),"#0") & "\" & > Format(Datepart("M",Fields!Date.Value),"#0") > > jcl_tw wrote: > > Amarnath, > > > > Tried using "mm/yy" in the Format Code field. The date shows up as 00/05 > > for all the months. > > > > Jimmy > > > > "Amarnath" wrote: > > > > > Try the value in the format tab if the list provides the format select it . > > > otherwise try giving dd/mm in the text box of the format tab. > > > > > > Amarnath > > > > > > "jcl_tw" wrote: > > > > > > > In my chart report, my x-axis date is displaying as 9/1/05, 10/1/05, etc. I > > > > would like to display the date as 9/05, 10/05, etc, is it possible? > > > > > > > > Thanks, > > > > Jimmy >
use MM/yy mm refers to minutes, MM to month. [quoted text, click to view] jcl_tw wrote: > RajDeep, > > Try your solution but unfortunately, the "Format Code" field under "Show > Labels" in the chart doesn't allows that many characters. > > Jimmy > > "RajDeep" wrote: > > > Jimmy, > > > > Why dont you try this > > > > =Format(DatePart("D",Fields!Date.Value),"#0") & "\" & > > Format(Datepart("M",Fields!Date.Value),"#0") > > > > jcl_tw wrote: > > > Amarnath, > > > > > > Tried using "mm/yy" in the Format Code field. The date shows up as 00/05 > > > for all the months. > > > > > > Jimmy > > > > > > "Amarnath" wrote: > > > > > > > Try the value in the format tab if the list provides the format select it . > > > > otherwise try giving dd/mm in the text box of the format tab. > > > > > > > > Amarnath > > > > > > > > "jcl_tw" wrote: > > > > > > > > > In my chart report, my x-axis date is displaying as 9/1/05, 10/1/05, etc. I > > > > > would like to display the date as 9/05, 10/05, etc, is it possible? > > > > > > > > > > Thanks, > > > > > Jimmy > > > >
Jen, It works! Thanks, Jimmy [quoted text, click to view] "Jen" wrote: > use MM/yy > mm refers to minutes, MM to month. > > jcl_tw wrote: > > RajDeep, > > > > Try your solution but unfortunately, the "Format Code" field under "Show > > Labels" in the chart doesn't allows that many characters. > > > > Jimmy > > > > "RajDeep" wrote: > > > > > Jimmy, > > > > > > Why dont you try this > > > > > > =Format(DatePart("D",Fields!Date.Value),"#0") & "\" & > > > Format(Datepart("M",Fields!Date.Value),"#0") > > > > > > jcl_tw wrote: > > > > Amarnath, > > > > > > > > Tried using "mm/yy" in the Format Code field. The date shows up as 00/05 > > > > for all the months. > > > > > > > > Jimmy > > > > > > > > "Amarnath" wrote: > > > > > > > > > Try the value in the format tab if the list provides the format select it . > > > > > otherwise try giving dd/mm in the text box of the format tab. > > > > > > > > > > Amarnath > > > > > > > > > > "jcl_tw" wrote: > > > > > > > > > > > In my chart report, my x-axis date is displaying as 9/1/05, 10/1/05, etc. I > > > > > > would like to display the date as 9/05, 10/05, etc, is it possible? > > > > > > > > > > > > Thanks, > > > > > > Jimmy > > > > > > >
you dont need to mention anything in the format code,for value you will have Fields!Date.Value and under that if you can see some thing like label,write the expression posted there. even though you got the solution ,it will be useful when it is important Regards Raj Deep.A [quoted text, click to view] jcl_tw wrote: > RajDeep, > > Try your solution but unfortunately, the "Format Code" field under "Show > Labels" in the chart doesn't allows that many characters. > > Jimmy > > "RajDeep" wrote: > > > Jimmy, > > > > Why dont you try this > > > > =Format(DatePart("D",Fields!Date.Value),"#0") & "\" & > > Format(Datepart("M",Fields!Date.Value),"#0") > > > > jcl_tw wrote: > > > Amarnath, > > > > > > Tried using "mm/yy" in the Format Code field. The date shows up as 00/05 > > > for all the months. > > > > > > Jimmy > > > > > > "Amarnath" wrote: > > > > > > > Try the value in the format tab if the list provides the format select it . > > > > otherwise try giving dd/mm in the text box of the format tab. > > > > > > > > Amarnath > > > > > > > > "jcl_tw" wrote: > > > > > > > > > In my chart report, my x-axis date is displaying as 9/1/05, 10/1/05, etc. I > > > > > would like to display the date as 9/05, 10/05, etc, is it possible? > > > > > > > > > > Thanks, > > > > > Jimmy > > > >
Don't see what you're looking for? Try a search.
|