# Methods to create visual separation between fields in a view?

**URL:** https://community.fibery.io/t/methods-to-create-visual-separation-between-fields-in-a-view/6159
**Category:** Get Help
**Created:** [May 8, 2024, 3:07pm UTC](https://community.fibery.io/t/methods-to-create-visual-separation-between-fields-in-a-view/6159 "2024-05-08T15:07:18Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![interr0bangr](https://sea2.discourse-cdn.com/flex020/user_avatar/community.fibery.io/interr0bangr/32/8089_2.png) [@interr0bangr](https://community.fibery.io/u/interr0bangr)
#### Post date: [May 8, 2024, 3:07pm UTC](https://community.fibery.io/t/methods-to-create-visual-separation-between-fields-in-a-view/6159/1 "2024-05-08T15:07:18Z")

</div>

Displaying fields from an entity in context views is one of the best feature of Fibery in my opinion. That said, in most cases, they all just get jammed next to each other which makes it hard to easily parse the information.

I’ve been using this formula to force a line break between field when needed.

 ![Day-Fibery (1)](https://us1.discourse-cdn.com/flex020/uploads/fibery/original/2X/6/6f33051547910617b25b897855e48f35070fb9c5.jpeg)

It’s just just 200 "non-breaking space/&nbsp;" characters displayed as text.

You can see it in action on the columns of a board view here:

 ![Sprint-Fibery (3)](https://us1.discourse-cdn.com/flex020/uploads/fibery/original/2X/e/e5019db21af45004fefad3702d5c57892932a43e.jpeg)

I’m wondering if anyone has a better/preferred workaround here? I’m worried that too many formulas, even simple ones like this, will start slowing things down.

But if this is the best way, hopefully this helps some of you like it helped me! 🙂

---

<div class="post-metadata">

### Author: ![YvetteLans](https://sea2.discourse-cdn.com/flex020/user_avatar/community.fibery.io/yvettelans/32/6101_2.png) [@YvetteLans](https://community.fibery.io/u/YvetteLans)
#### Post date: [May 9, 2024, 1:44pm UTC](https://community.fibery.io/t/methods-to-create-visual-separation-between-fields-in-a-view/6159/2 "2024-05-09T13:44:56Z")

</div>

Are the ‘pland’ and ‘total’ fields normal number fields or formulas?

If it are formulas you can combine them into 1 text formula and put extra spaces if needed.

I do this a lot to save formulas when I want to show combined data, as you can see in the (Dutch) screenshot below

![image](https://us1.discourse-cdn.com/flex020/uploads/fibery/original/2X/5/5f6ad0a728d9fbc296b8d605101d1814a23d7688.png)

So every number is normally 1 formula; by combining them in 1 (text) field I can save a lot of formulas.

But this will only works if it are indeed formulas currently and if you don’t use those fields for sorting or something else 🙂

---

<div class="post-metadata">

### Author: ![interr0bangr](https://sea2.discourse-cdn.com/flex020/user_avatar/community.fibery.io/interr0bangr/32/8089_2.png) [@interr0bangr](https://community.fibery.io/u/interr0bangr)
#### Post date: [May 9, 2024, 3:07pm UTC](https://community.fibery.io/t/methods-to-create-visual-separation-between-fields-in-a-view/6159/3 "2024-05-09T15:07:25Z")

</div>

Those are formulas, so yeah, I could theoretically add labels and spaces to them if needed, thanks for the idea!

Are you just adding the extra spaces to your fields in the same way as I am, which is just pasting a whole lot of empty " " as text?

---

<div class="post-metadata">

### Author: ![YvetteLans](https://sea2.discourse-cdn.com/flex020/user_avatar/community.fibery.io/yvettelans/32/6101_2.png) [@YvetteLans](https://community.fibery.io/u/YvetteLans)
#### Post date: [May 9, 2024, 3:26pm UTC](https://community.fibery.io/t/methods-to-create-visual-separation-between-fields-in-a-view/6159/4 "2024-05-09T15:26:28Z")

</div>

Yes, you can put as many spaces in the text as needed. If you don’t use a trim, all spaces will be kept 🙂

One extra tip: if you calculate number fields, the output in a ToText formula will contain decimals, even if the number field didn’t had decimals.

So outcome may look like “20.0 hours” instead of “20 hours”

Also thousand separators will be lost.

You can fix that with ReplaceRegex formulas.

To skip decimals in number fields, use this formula:

```auto
ReplaceRegex(
          ToText( [field] ),
          "(?<=\d)\.\d+",
          ""
        )

```

To add a thousand seperator and remove decimals (in this case a period), you can use this one:

```auto
ReplaceRegex(
      ReplaceRegex(
        ToText( [field] ),
        "(?<=\d)\.\d+",
        ""
      ),
      "(?<![.$])[0-9](?=(?:[0-9]{3})+(?![0-9]))",
      "\&."
    )

```

Example outcome of calculated fields

![image](https://us1.discourse-cdn.com/flex020/uploads/fibery/original/2X/9/9749cba4f10d5a9a2a5c978feb48215f77150b5c.png)

---

<div class="post-metadata">

### Author: ![interr0bangr](https://sea2.discourse-cdn.com/flex020/user_avatar/community.fibery.io/interr0bangr/32/8089_2.png) [@interr0bangr](https://community.fibery.io/u/interr0bangr)
#### Post date: [May 14, 2024, 10:27pm UTC](https://community.fibery.io/t/methods-to-create-visual-separation-between-fields-in-a-view/6159/5 "2024-05-14T22:27:45Z")

</div>

So because I’m not always using number/text fields, appending spaces to the end of my formulas won’t work in many cases.

Any while it seemed to work for a day or so, now using

> " "

as a formula doesn’t work anymore and I’m back to using

> “\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_”

Which takes up a ton of vertical space.

Any other ideas how I can transform this:

![Production-Plan-Fibery (5)](https://us1.discourse-cdn.com/flex020/uploads/fibery/original/2X/3/3b2eafb67197f93d6fc09b059a69ba37a7bcf389.jpeg)  
or this:  
 ![Production-Plan-Fibery (3)](https://us1.discourse-cdn.com/flex020/uploads/fibery/original/2X/c/c28cac04432316c98d69fe1f1084917cae8f7a5a.jpeg)  
into this?  
 ![Production-Plan-Fibery-(4)](https://us1.discourse-cdn.com/flex020/uploads/fibery/original/2X/d/d33d8d89fcb257f1c0bf6299b8e82a4b46b4945c.jpeg)
