Skip to content
Discussion options

You must be logged in to vote

Hello @raviprsd18,
I looked into your report and the special topic is here your element "Label" because thus type is by default a string type and cannot be converted to a numeric value on xlsx side. The excel-emitter must know if it is a string-value or a numeric-value.

For exampe the dynamic text can switch based on the content type between numeric- (content type: plain) and string-value (content type: html) for excel.

Here is my solution how you can handle your problem:

	var elemValue	= arrayData[rowIndex][colIndex];
	var contentType = "plain";
				
	if (typeof elemValue === "undefined" || typeof elemValue === "string") {
	//	=> BIRT label
		if (typeof elemValue === "undefined") {
			el…

Replies: 2 comments 4 replies

Comment options

You must be logged in to vote
4 replies
@raviprsd18
Comment options

@raviprsd18
Comment options

@raviprsd18
Comment options

@speckyspooky
Comment options

Answer selected by raviprsd18
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants