In one of my DocuSign templates, I have a fixed table and a summary row at the bottom. In the summary row, all above cells in the column are summaries with a formula field. The calculated amount, however, returns the result using a UK/US decimal format:
link to a picture of the problem
Is it possible to change the result from "1,235,678.00" to "1.235.678,00"?
It is not possible to change the decimal formal of a calculated field through settings as of the time of this writing. I contacted DocuSign support and I was referred to my account manager to have this fixed. I recommend to anyone walking in these shoes to either contact DocuSign support or contacting their account manager directly!
Related
I am tring to create a DocuSign template and I need to be able to insert a field which shows a currency amount (for example $12.55 ). I need to show the dollar sign and possibly calculate the values based on other field values.
I am able to calculate values using a formula fields, but I don't see ho to mask the formula fields to show a dollar sign. The only workaround that I was able to come up with is to make a static text field with a dollar sign next to a formula field as show in the picture:
Is there a way to add a currency field (validation) in DocuSign?
No - your dollar sign workaround is the only real option, although you do want to make sure you make the $ field read only so the signer doesn't type anything into it.
It would be possible to use custom validation and regex to make a text field that accepts a dollar amount, but it wouldn't be usable with a Formula field. Formula fields only accept input from Number and Date validation fields.
There is an open Enhancement Request regarding this, but it has not been prioritized and is not currently on the roadmap for implementation. If you would like to express interest, contact your DocuSign Account Team and reference issue MAR-29946.
I am working on one requirement where I have to show / hide Sign tag as per
the number of days calculation.
I tried to use two datafield for "Date" date type:
DateSigned = "11/05/2015"
DateReceived= "11/01/2015"
Added one more Datafield NumberofDays "number" type and added initial
value 14 days.
So , I want to calculate difference b/w to dates and if this difference is
greater than 14 days, I need to show Sign tag on documents else I need to
hide it.
I tried to use formula on template but it seems, not working
Formula is used = DateDiff([DateSigned], [DateReceived]) >
([NumberofDays])
I can always see Signature tag visible whether I update any value in
NumberofDays.
Is there any otherway like if we can open Recipiententer image description here/Signer view using Iframe and Iframe can be made read only.
your help is really appreciable.Attached image for reference.
Unfortunately the DocuSign conditional tab logic does not support greater than or less than operators. It only supports "equals specific value" or "not blank".
A crude workaround using the conditional logic tabs support: lets say i want a signature tab to appear if a delta is 1,2, or 3. I would create THREE unique signature tabs, each with specific conditional logic to appear if the delta/calculated value is 1, 2, or 3. If i needed to support 5 unique values, then that would result in 5 unique signature tabs. Granted, only ONE would actually be visible/appear based on the end calculation.
I am trying to find the substring of the start time (I just want the date) field using a calculated column in SharePoint 2010 on a date/time field.
I am using the =LEFT() command (please see attached images)
As you can see the formula validates but doesn't show the correct output
Please note I am restricted to out of the box SharePoint only, SharePoint designer has been disabled and this being a Calendar List, infopath is out of the question.
LEFT function is doing a substring on SharePoint's internal representation of the date, which is a number.
To get just the date, you can simply have your fomula as: =[Start Time] and set the Date and Time Format to Date Only.
In this url, it is shown how you can format a particular column to according to particular currency.
http://publib.boulder.ibm.com/infocenter/caapps/v10r1m0/index.jsp?topic=%2Fcom.ibm.swg.im.cognos.ug_fm.10.1.0.doc%2Fug_fm_id13919format_SAP_query_items.html
Now in a result set, there may be 2 rows and each may be of a different currency and also different number of decimals. According to the method here, it seems that we need to hard code the currency and the number of decimals on the entire column. Is there a way to set it dynamically?
I have two columns in the result set, one is the amount the other one is the currency. Based on currency, i want to format the amount column. From db, the amount column just comes back as a number.
How can I do it?
I can't think how this would be done in Framework Manager. You can do it in Report Studio however.
He are some high level instructions on how to do it in Report Studio:
In Condition Explorer, create a variable which results in a different string for each currency. For example if your currency code field is [Table].[CurrencyCode] and it has things like 'AUD','CAD' etc. in it then your variable expression would just be the field:
[Table].[CurrencyCode]
This will simply output the currency as its result
Still in the variable creation screen, add values the the 'Value' window to for each possible currency code result
Go to the report page, click on the field that contains your actual currency value (i.e. 13.50 and set it's Style Variable property to the variable that you just created
Now go back to condition explorer and select your first currency
Ensure your currency value field is selected and edit the 'Data Format' field to the appropriate format
Repeat 4 & 5 for each currency
Here is another guide to how to do this:
http://www-01.ibm.com/support/docview.wss?uid=swg21339405
This is called 'Conditional Formatting' if you would like to research it further.
Unfortunately this solution needs to be done at the report level and can't be done down at the the FM level. I'm not aware of a way that you can conditionally set the data format in FM like this.
All,
Does anyone know how to make a column in a SharePoint list that will always display today's date when rendered? I've seen tricks that require the list/item to be modified each day however, that's not what I'm looking for. I just want a column that whenever the list is viewed it displays the current date.
Thanks for any feedback.
I wanted to say that you use calculated columnns, but unfortunately according to this link the TODAY function is supported as a default value, but not supported in a calculated column.
So, outside of a default value, the only way to do this may be through a more involved effort. I see two options:
Use SharePoint Designer and the Data Form Web Part to show a view into a list with an additional column that has today's date.
The right way to do this is likely a computed field as it does not involve storing any additional information, but simply displays additional information. I didn't find a good link that only discussed computed fields, but this link does go into a bit of depth.