FAQ/Questions/Add-Formatting-Options.md
... ...
@@ -49,6 +49,8 @@ In this example, we show how to create a custom formatter. This example is for f
49 49
50 50
You may use the DatesCustomFormatFormatter below as a reference. This will get inserted into your global.asax below your [[CustomAdHocConfig|http://wiki.izenda.us/API/AdHocConfig]] class definition. You can implement this custom formatter in your [[InitializeReporting()|http://wiki.izenda.us/FAQ/InitializeReporting]] method by creating a "new" DatesCustomFormatFormatter in the [[Formats|http://wiki.izenda.us/API/CodeSamples/Formats]] collection.
51 51
52
+_*Note:* You can use this as a template and any other format that requires a bit more work than a simple format like in the above examples can be easily implemented by changing the **Format** method and what **allowedTypeGroups** are in the collection._
53
+
52 54
```csharp
53 55
[Serializable]
54 56
public class DatesCustomFormatFormatter : IFormatter {