Hi
In a Cross Tab report i have Item Code displayed in a row. I want Item Description also to be displayed in a separate Box
Thanks
Hi
In a Cross Tab report i have Item Code displayed in a row. I want Item Description also to be displayed in a separate Box
Thanks
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh KumarPosted Mar 17, 2025, 11:18 AM
If you are working on crystal report,
Crystal Reports Cross Tab:
Using a Formula Field for a Separate Box:
Create a Formula Field in Field Explorer:
2. Drag this formula into the Cross Tab Footer or Header to display it separately.
Display Outside Cross Tab:
Add a Text Box outside the Cross Tab and bind it to
Sophia CarterPosted Mar 17, 2025, 10:21 AM
Hi there! It sounds like you're working on a Cross Tab report where you have Item Codes displayed in a row and now you would like to add Item Descriptions in a separate box next to them.
To achieve this layout, you can consider using HTML and CSS. You can structure your code to have two columns side by side - one for Item Codes and the other for Item Descriptions.
Here's a simple example using HTML and CSS:
In this example, we have created a container with two columns using flexbox. The left column contains Item Codes, and the right column contains their respective Item Descriptions. You can replace the placeholder data with your actual Item Codes and Descriptions.
This approach allows you to display Item Codes and Descriptions side by side in a clean and organized manner. I hope this helps you achieve the layout you are looking for in your Cross Tab report. Let me know if you need further assistance!